aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/openat64.c
blob: 8dedcbfc9d4b155df1e2e9899ee8fb60d4d1584f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 
 * Copyright (c) 2008-2010,2012 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * 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;
 * }
 */