aboutsummaryrefslogtreecommitdiffstats
path: root/guts/open64.c
blob: adeb885b79d7eb9b6778883abffb61f2d45a4aee (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_open64(const char *path, int flags, ...mode_t mode) {
 *	int rc = -1;
 */

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

/*	return rc;
 * }
 */