aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include/posix/unistd.h
blob: 0cd9396ec99d80a0b7980b47dc4e1fb444e95789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _POSIX_UNISTD_H
#define _POSIX_UNISTD_H

#include_next <unistd.h>
#include <sys/select.h>
#include <arch_limits.h>

#define getpagesize() __PAGE_SIZE

int ftruncate(int fd, off_t length);

#endif /* _POSIX_UNISTD_H */