AsciiCam/C/lib/nl_errno.h
Harshit-Dhanwalkar 96369d6f94 Add nl_srterror
2026-06-21 19:15:08 +05:30

14 lines
225 B
C

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