libclayer/include/errno.h

19 lines
185 B
C
Raw Normal View History

2022-12-25 08:58:00 +00:00
#ifndef _ERRNO_H
#define _ERRNO_H 1
#ifdef __cplusplus
extern "C" {
#endif
2022-12-25 11:23:09 +00:00
#include <libclayer.h>
2022-12-25 08:58:00 +00:00
#define ERANGE 1
2022-12-25 11:23:09 +00:00
extern int LIBCLAYER(errno);
2022-12-25 08:58:00 +00:00
#ifdef __cplusplus
}
#endif
#endif