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

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

/*	return rc;
 * }
 */