mirror of
https://github.com/Harshit-Dhanwalkar/AsciiCam.git
synced 2026-06-30 11:19:38 +02:00
18 lines
331 B
C
18 lines
331 B
C
#ifndef NOLIBC_H
|
|
#define NOLIBC_H
|
|
|
|
#define _SYS_SELECT_H 1
|
|
#define __FD_SETSIZE 1024
|
|
|
|
// IWYU pragma: begin_exports
|
|
#include "nl_alloc.h"
|
|
#include "nl_errno.h"
|
|
#include "nl_getopt.h"
|
|
#include "nl_io.h"
|
|
#include "nl_printf.h"
|
|
#include "nl_signal.h"
|
|
#include "nl_string.h"
|
|
#include "nl_syscall.h"
|
|
// IWYU pragma: end_exports
|
|
|
|
#endif
|