41 lines
838 B
C
41 lines
838 B
C
/*
|
|
* unistd.h
|
|
*/
|
|
|
|
#ifndef _UNISTD_H
|
|
#define _UNISTD_H
|
|
|
|
#include <klibc/extern.h>
|
|
#include <klibc/compiler.h>
|
|
#include <stddef.h>
|
|
#include <sys/types.h>
|
|
|
|
__extern __noreturn _exit(int);
|
|
|
|
__extern int open(const char *, int, ...);
|
|
__extern int close(int);
|
|
|
|
__extern ssize_t read(int, void *, size_t);
|
|
__extern ssize_t write(int, const void *, size_t);
|
|
|
|
__extern int isatty(int);
|
|
|
|
__extern int getscreensize(int, int *, int *);
|
|
|
|
__extern char *getcwd(char *, int);
|
|
__extern int chdir(const char *);
|
|
|
|
__extern unsigned int sleep(unsigned int);
|
|
__extern unsigned int msleep(unsigned int);
|
|
|
|
__extern int getopt(int, char *const *, const char *);
|
|
__extern char *optarg;
|
|
__extern int optind, opterr, optopt;
|
|
|
|
/* Standard file descriptor numbers. */
|
|
#define STDIN_FILENO 0
|
|
#define STDOUT_FILENO 1
|
|
#define STDERR_FILENO 2
|
|
|
|
#endif /* _UNISTD_H */
|