mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-27 11:14:42 -05:00
17 lines
150 B
C
17 lines
150 B
C
|
#ifndef _ERRNO_H
|
||
|
#define _ERRNO_H 1
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#define ERANGE 1
|
||
|
|
||
|
extern int errno;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|