Rev 2735 | Rev 2773 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2735 | Rev 2755 | ||
|---|---|---|---|
| Line 50... | Line 50... | ||
| 50 | extern off_t lseek(int, off_t, int); |
50 | extern off_t lseek(int, off_t, int); |
| 51 | extern int ftruncate(int, off_t); |
51 | extern int ftruncate(int, off_t); |
| 52 | extern int close(int); |
52 | extern int close(int); |
| 53 | extern int unlink(const char *); |
53 | extern int unlink(const char *); |
| 54 | extern int rmdir(const char *); |
54 | extern int rmdir(const char *); |
| - | 55 | extern int chdir(const char *); |
|
| - | 56 | extern char *getcwd(char *buf, size_t); |
|
| 55 | 57 | ||
| 56 | extern void _exit(int status); |
58 | extern void _exit(int status); |
| 57 | extern void *sbrk(ssize_t incr); |
59 | extern void *sbrk(ssize_t incr); |
| 58 | extern int usleep(unsigned long usec); |
60 | extern int usleep(unsigned long usec); |
| 59 | extern unsigned int sleep(unsigned int seconds); |
61 | extern unsigned int sleep(unsigned int seconds); |