2011-02-17 18:11:09 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include "namespace.h"
|
|
|
|
#include <lib.h>
|
|
|
|
|
|
|
|
#ifdef __weak_alias
|
|
|
|
__weak_alias(truncate, _truncate)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
|
|
|
int truncate(const char *_path, off_t _length)
|
|
|
|
{
|
|
|
|
message m;
|
2011-11-28 11:07:55 +01:00
|
|
|
m.m2_p1 = (char *) __UNCONST(_path);
|
2011-02-17 18:11:09 +01:00
|
|
|
m.m2_i1 = strlen(_path)+1;
|
|
|
|
m.m2_l1 = _length;
|
|
|
|
|
|
|
|
return(_syscall(VFS_PROC_NR, TRUNCATE, &m));
|
|
|
|
}
|