AsciiCam/C/lib/nl_errno.h

15 lines
225 B
C
Raw Permalink Normal View History

2026-06-08 13:36:51 +05:30
#ifndef NL_ERRNO_H
#define NL_ERRNO_H
#include <stddef.h>
extern int errno;
2026-06-21 19:15:08 +05:30
const char *nl_strerror(int err);
2026-06-08 13:36:51 +05:30
void nl_perror(const char *msg);
#define perror(msg) nl_perror(msg)
2026-06-21 19:15:08 +05:30
#define strerror(e) nl_strerror(e)
2026-06-08 13:36:51 +05:30
#endif