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

	rc = wrap_openat(dirfd, path, flags | O_LARGEFILE, mode);

/*	return rc;
 * }
 */