AsciiCam/C/lib/nl_errno.h
2026-06-08 13:36:51 +05:30

12 lines
156 B
C

#ifndef NL_ERRNO_H
#define NL_ERRNO_H
#include <stddef.h>
extern int errno;
void nl_perror(const char *msg);
#define perror(msg) nl_perror(msg)
#endif