ack/mach/vax4/libbsd4_2/utime.c

14 lines
191 B
C
Raw Normal View History

1987-02-23 18:58:58 +00:00
#include <sys/types.h>
utime(file, timep)
char *file;
time_t timep[2];
{
struct { long l1,l2,l3,l4; } x;
x.l2 = x.l4 = 0;
x.l1 = timep[0];
x.l3 = timep[1];
return utimes(file,&x);
}