mirror of
https://github.com/Harshit-Dhanwalkar/AsciiCam.git
synced 2026-06-09 10:25:12 +02:00
12 lines
156 B
C
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
|