Home | History | Annotate | Line # | Download | only in sys
truncate.c revision 1.1
      1 /* $Id: truncate.c,v 1.1 1994/04/02 05:38:22 cgd Exp $ */
      2 
      3 #include <sys/types.h>
      4 #include <sys/syscall.h>
      5 
      6 int
      7 truncate(path, length)
      8         char    *path;
      9         off_t   length;
     10 {
     11 
     12         return(__syscall((quad_t)SYS_truncate, path, 0, length));
     13 }
     14