diff options
author | Jim Meyering <jim@meyering.net> | 2005-04-16 06:38:20 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-04-16 06:38:20 +0000 |
commit | 037421542d950c375f7b04b55666f6f7249628b8 (patch) | |
tree | 1864c9681236f4a1a3748aa1601a4aa2129cb1ae | |
parent | 776587cbea640cc56192b97a82fb292cceb725a1 (diff) | |
download | coreutils-037421542d950c375f7b04b55666f6f7249628b8.tar.xz |
(S_TYPEISSHM): Remove definition.
Get the definition by including "stat-macros.h", instead.
-rw-r--r-- | src/dd.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -33,6 +33,7 @@ #include "human.h" #include "long-options.h" #include "quote.h" +#include "stat-macros.h" #include "xstrtol.h" #include "xtime.h" @@ -64,10 +65,6 @@ static void process_signals (void); # define SIGINFO SIGUSR1 #endif -#ifndef S_TYPEISSHM -# define S_TYPEISSHM(Stat_ptr) 0 -#endif - #if ! HAVE_FDATASYNC # define fdatasync(fd) (errno = ENOSYS, -1) #endif |