aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/truncate64.c
blob: aaf1797ecafa488abaa75020f8a7cb241129cc0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 
 * Copyright (c) 2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * static int
 * wrap_truncate64(const char *path, off64_t length) {
 *	int rc = -1;
 */

	rc = real_truncate64(path, length);

/*	return rc;
 * }
 */