Changes in uspace/lib/c/include/unistd.h [db11d30:f3b4051] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/unistd.h
rdb11d30 rf3b4051 41 41 42 42 #ifndef NULL 43 #define NULL ((void *) 0)43 #define NULL 0 44 44 #endif 45 46 #define getpagesize() (PAGE_SIZE) 45 47 46 48 #ifndef SEEK_SET … … 55 57 #define SEEK_END 2 56 58 #endif 57 58 #define getpagesize() (PAGE_SIZE)59 59 60 60 extern int dup2(int oldfd, int newfd); … … 74 74 extern int chdir(const char *); 75 75 76 extern void exit(int) __attribute__((noreturn));76 extern void _exit(int) __attribute__((noreturn)); 77 77 extern int usleep(useconds_t); 78 78 extern unsigned int sleep(unsigned int);
Note:
See TracChangeset
for help on using the changeset viewer.