aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/openat64.c
blob: 726ec6d29379a0335e8ba4d14962152623490b29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 
 * Copyright (c) 2008-2010 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, mode | O_LARGEFILE);

/*	return rc;
 * }
 */