summaryrefslogtreecommitdiff
path: root/src/utime/utime.c
blob: 75ce6c1dceb23a98b3cf5b70c4d94e0f624acb23 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "time.h"
#include <utime.h>

int utime(const char *path, const struct utimbuf *times)
{
	(void)path; (void)times;
	return -1;
}
/*
POSIX(1)
*/