aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/faccessat.c
blob: 02515eede261c859854cbf4bbd6fe05699fa4052 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 
 * Copyright (c) 2021, Linux Foundation; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * static int
 * wrap_fsaccessat(int dirfd, const char *path, int mode, int flags) {
 *	int rc = -1;
 */
	rc = wrap_faccessat2(dirfd, path, mode, flags);

/*	return rc;
 * }
 */