Clean up embedded Makefile targets; fix build failure
[syslinux.git] / com32 / include / unistd.h
blobd0b8309c6f8cbce16e05ca8f880def62b0307a8a
1 /*
2 * unistd.h
3 */
5 #ifndef _UNISTD_H
6 #define _UNISTD_H
8 #include <klibc/extern.h>
9 #include <klibc/compiler.h>
10 #include <stddef.h>
11 #include <sys/types.h>
13 __extern __noreturn _exit(int);
15 __extern int open(const char *, int, ...);
16 __extern int close(int);
18 __extern ssize_t read(int, void *, size_t);
19 __extern ssize_t write(int, const void *, size_t);
21 __extern int isatty(int);
23 __extern int getscreensize(int, int *, int *);
25 /* Standard file descriptor numbers. */
26 #define STDIN_FILENO 0
27 #define STDOUT_FILENO 1
28 #define STDERR_FILENO 2
30 #endif /* _UNISTD_H */