Rev 1113 | Rev 1237 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1113 | Rev 1228 | ||
|---|---|---|---|
| Line 35... | Line 35... | ||
| 35 | #define NULL 0 |
35 | #define NULL 0 |
| 36 | #define getpagesize() (PAGE_SIZE) |
36 | #define getpagesize() (PAGE_SIZE) |
| 37 | 37 | ||
| 38 | extern ssize_t write(int fd, const void * buf, size_t count); |
38 | extern ssize_t write(int fd, const void * buf, size_t count); |
| 39 | extern void _exit(int status); |
39 | extern void _exit(int status); |
| 40 | void *mmap(void *address, size_t size, int flags); |
40 | void *as_area_create(void *address, size_t size, int flags); |
| 41 | void *mremap(void *address, size_t size, int flags); |
41 | void *as_area_resize(void *address, size_t size, int flags); |
| 42 | void *sbrk(ssize_t incr); |
42 | void *sbrk(ssize_t incr); |
| 43 | 43 | ||
| 44 | #endif |
44 | #endif |