1: /*
   2:  * Copyright (c) 1980 Regents of the University of California.
   3:  * All rights reserved.  The Berkeley software License Agreement
   4:  * specifies the terms and conditions for redistribution.
   5:  */
   6: 
   7: #if defined(LIBC_SCCS) && !defined(lint)
   8: static char sccsid[] = "@(#)utime.c	5.2 (Berkeley) 3/9/86";
   9: #endif LIBC_SCCS and not lint
  10: 
  11: #include <sys/time.h>
  12: #include <sys/types.h>
  13: /*
  14:  * Backwards compatible utime.
  15:  */
  16: 
  17: utime(name, otv)
  18:     char *name;
  19:     time_t otv[];
  20: {
  21:     struct timeval tv[2];
  22: 
  23:     tv[0].tv_sec = otv[0]; tv[0].tv_usec = 0;
  24:     tv[1].tv_sec = otv[1]; tv[1].tv_usec = 0;
  25:     return (utimes(name, tv));
  26: }
Last modified: 1987-03-10
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: ?E00
Valid CSS Valid XHTML 1.0 Strict