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

	return wrap_openat(AT_FDCWD, path, flags, mode);

/*	return rc;
 * }
 */