Rev 4482 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4482 | Rev 4601 | ||
|---|---|---|---|
| Line 63... | Line 63... | ||
| 63 | extern char *getcwd(char *buf, size_t); |
63 | extern char *getcwd(char *buf, size_t); |
| 64 | extern int rmdir(const char *); |
64 | extern int rmdir(const char *); |
| 65 | extern int chdir(const char *); |
65 | extern int chdir(const char *); |
| 66 | 66 | ||
| 67 | extern void _exit(int status) __attribute__ ((noreturn)); |
67 | extern void _exit(int status) __attribute__ ((noreturn)); |
| 68 | extern void *sbrk(ssize_t incr); |
- | |
| 69 | extern int usleep(unsigned long usec); |
68 | extern int usleep(unsigned long usec); |
| 70 | extern unsigned int sleep(unsigned int seconds); |
69 | extern unsigned int sleep(unsigned int seconds); |
| 71 | 70 | ||
| 72 | #endif |
71 | #endif |
| 73 | 72 | ||