mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-06 16:13:26 +00:00
16 lines
330 B
C++
16 lines
330 B
C++
// Aseprite Base Library
|
|
// Copyright (c) 2001-2013 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
#ifndef BASE_ERRNO_STRING_H_INCLUDED
|
|
#define BASE_ERRNO_STRING_H_INCLUDED
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
std::string get_errno_string(int errnum);
|
|
|
|
#endif
|