diff options
Diffstat (limited to 'src/unistd/truncate.c')
| -rw-r--r-- | src/unistd/truncate.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/unistd/truncate.c b/src/unistd/truncate.c new file mode 100644 index 00000000..578a4faf --- /dev/null +++ b/src/unistd/truncate.c @@ -0,0 +1,11 @@ +#include <unistd.h> + +int truncate(const char *path, off_t length) +{ + return 0; +} + +/* +XOPEN(400) +POSIX(200809) +*/ |
