aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/utimes.c
blob: ec49f02e5345ff6eb404163e6ec027e72e63e557 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 
 * Copyright (c) 2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * static int
 * wrap_utimes(const char *path, const struct timeval *times) {
 *	int rc = -1;
 */
	rc = real_utimes(path, times);

/*	return rc;
 * }
 */