aboutsummaryrefslogtreecommitdiffstats
path: root/guts/open64.c
blob: 0898c788890453348a107773f9c1f17de08d7c99 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* 
 * 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;
 * }
 */