Subversion Repositories Kolibri OS

Rev

Rev 4874 | Rev 5369 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4874 Rev 4921
Line 40... Line 40...
40
/*	O_NDELAY	_FNDELAY 	set in include/fcntl.h */
40
/*	O_NDELAY	_FNDELAY 	set in include/fcntl.h */
41
/*	O_NDELAY	_FNBIO 		set in include/fcntl.h */
41
/*	O_NDELAY	_FNBIO 		set in include/fcntl.h */
42
#define	O_NONBLOCK	_FNONBLOCK
42
#define	O_NONBLOCK	_FNONBLOCK
43
#define	O_NOCTTY	_FNOCTTY
43
#define	O_NOCTTY	_FNOCTTY
44
 
44
/* For machines which care - */
45
#define _FBINARY        0x10000
-
 
46
#define _FTEXT          0x20000
-
 
47
#define _FNOINHERIT 0x40000
-
 
48
 
-
 
49
#define O_BINARY    _FBINARY
-
 
50
#define O_TEXT      _FTEXT
-
 
51
#define O_NOINHERIT _FNOINHERIT
-
 
52
 
-
 
53
/* For machines which care - */
-
 
54
#if defined (_WIN32) || defined (__CYGWIN__)
45
#if defined (_WIN32) || defined (__CYGWIN__)
55
#define _FBINARY        0x10000
46
#define _FBINARY        0x10000
56
#define _FTEXT          0x20000
47
#define _FTEXT          0x20000
57
#define _FNOINHERIT	0x40000
48
#define _FNOINHERIT	0x40000
58
 
49