From: Jim Meyering Date: Mon, 16 Jun 2003 10:45:18 +0000 (+0000) Subject: (O_NDELAY, O_NONBLOCK, O_NOCTTY, EISDIR): Remove definitions. X-Git-Tag: v5.0.1~260 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9253fdd9a23a9fcc4586ab98339d7e2024078590;p=thirdparty%2Fcoreutils.git (O_NDELAY, O_NONBLOCK, O_NOCTTY, EISDIR): Remove definitions. Moved to system.h. --- diff --git a/src/touch.c b/src/touch.c index 7597972b5b..3847bde240 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;