Files
photon/photon/libc/include/errno.h

19 lines
222 B
C
Raw Normal View History

2020-04-30 17:46:06 +01:00
#ifndef ERRNO_H_
#define ERRNO_H_
#include <sys/_errno.h>
#define errno (*__errno_location())
#if defined(__cplusplus)
extern "C" {
#endif
extern int *__errno_location(void);
#if defined(__cplusplus)
}
#endif
#endif