Files
neulacpu/laos/include/unistd.h
2023-05-21 00:48:04 +08:00

9 lines
228 B
C

#ifndef UNISTD_H__
#define UNISTD_H__
/* Standard file descriptors. */
#define STDIN_FILENO 0 /* Standard input. */
#define STDOUT_FILENO 1 /* Standard output. */
#define STDERR_FILENO 2 /* Standard error output. */
#endif