repo.or.cz
/
xloong.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add support store ddr param in flash.
[xloong.git]
/
include
/
fcntl.h
blob
051b4db845c3d6f7e9400053bac428b69340a096
1
/* $Id: fcntl.h,v 1.1.1.1 2006/09/14 01:59:06 root Exp $ */
2
3
#ifndef _FCNTL_H_
4
#define _FCNTL_H_
5
6
#if 0
7
#define O_RDONLY 0
8
#define O_WRONLY 1
9
#define O_RDWR 2
10
#endif
11
12
__BEGIN_DECLS
13
int
open
__P
((
const char
*,
int
, ...));
14
int
ioctl
__P
((
int
fd
,
unsigned long
op
, ...));
15
__END_DECLS
16
17
#include <sys/fcntl.h>
18
#endif
/* _FCNTL_ */