1
0
mirror of https://github.com/bebbo/amiga-gcc.git synced 2025-11-19 23:50:55 +00:00
Files
amiga-gcc/sys-include/errno.h
2022-12-31 15:57:19 +01:00

21 lines
270 B
C

#ifndef _ERRNO_H
#define _ERRNO_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#ifdef __posix_threads__
extern int __thread errno;
#else
extern int errno;
#endif
#include <sys/errno.h>
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* _ERRNO_H */