AsciiCam/C/lib/nl_errno.h

13 lines
156 B
C
Raw 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;
void nl_perror(const char *msg);
#define perror(msg) nl_perror(msg)
#endif