mirror of
https://github.com/bebbo/amiga-gcc.git
synced 2025-11-19 23:50:55 +00:00
21 lines
270 B
C
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 */
|