diff options
author | Jim Meyering <jim@meyering.net> | 2003-06-16 10:45:18 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-06-16 10:45:18 +0000 |
commit | 9253fdd9a23a9fcc4586ab98339d7e2024078590 (patch) | |
tree | a9a804ad578631c3933516bb5b4b1581dd603439 /src | |
parent | 11fb97767562fd1d7d3cfe75da92093bc8f7c068 (diff) | |
download | coreutils-9253fdd9a23a9fcc4586ab98339d7e2024078590.tar.xz |
(O_NDELAY, O_NONBLOCK, O_NOCTTY, EISDIR): Remove definitions.
Moved to system.h.
Diffstat (limited to 'src')
-rw-r--r-- | src/touch.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/touch.c b/src/touch.c index 7597972b5..3847bde24 100644 --- a/src/touch.c +++ b/src/touch.c @@ -46,22 +46,6 @@ time_t time (); #define CH_ATIME 1 #define CH_MTIME 2 -#if !defined O_NDELAY -# define O_NDELAY 0 -#endif - -#if !defined O_NONBLOCK -# define O_NONBLOCK O_NDELAY -#endif - -#if !defined O_NOCTTY -# define O_NOCTTY 0 -#endif - -#if !defined EISDIR -# define EISDIR 0 -#endif - /* The name by which this program was run. */ char *program_name; |