mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 03:19:54 +08:00
13 lines
198 B
C
13 lines
198 B
C
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include "syscall.h"
|
|
#include "eit.h"
|
|
|
|
int
|
|
_utime (path, times)
|
|
const char *path;
|
|
char *times;
|
|
{
|
|
return TRAP0 (SYS_utime, path, times, 0);
|
|
}
|