aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/pathconf.c
blob: 930059548bf7fc3507d2c4b2e423ade3ae78fd8e (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 long
 * wrap_pathconf(const char *path, int name) {
 *	long rc = -1;
 */

	rc = real_pathconf(path, name);

/*	return rc;
 * }
 */