#include #include "namespace.h" #include #ifdef __weak_alias __weak_alias(truncate, _truncate) #endif #include #include #include int truncate(const char *_path, off_t _length) { message m; memset(&m, 0, sizeof(m)); m.VFS_TRUNCATE_NAME = (char *) __UNCONST(_path); m.VFS_TRUNCATE_LEN = strlen(_path)+1; m.VFS_TRUNCATE_OFF_LO = ex64lo(_length); m.VFS_TRUNCATE_OFF_HI = ex64hi(_length); return(_syscall(VFS_PROC_NR, VFS_TRUNCATE, &m)); }