diff options
author | Jim Meyering <jim@meyering.net> | 2003-01-11 09:44:23 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-01-11 09:44:23 +0000 |
commit | b734cbf724e5f0f3f4de56b85d023a3d2d013615 (patch) | |
tree | 6e7cbbb6e28cd57d81bdfe26314e2d42c70cbbc0 /lib | |
parent | 7287520d21939ddf1a619547bf899cdb1a3aaa05 (diff) | |
download | coreutils-b734cbf724e5f0f3f4de56b85d023a3d2d013615.tar.xz |
Don't test HAVE_ERRNO_H. It's not necessary.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/makepath.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/makepath.c b/lib/makepath.c index d4eaadeec..a725e8597 100644 --- a/lib/makepath.c +++ b/lib/makepath.c @@ -1,5 +1,6 @@ /* makepath.c -- Ensure that a directory path exists. - Copyright (C) 1990, 1997, 1998, 1999, 2000, 2002 Free Software Foundation, Inc. + Copyright (C) 1990, 1997, 1998, 1999, 2000, 2002, 2003 Free Software + Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -58,9 +59,7 @@ char *alloca (); # include <stdlib.h> #endif -#if HAVE_ERRNO_H -# include <errno.h> -#endif +#include <errno.h> #ifndef errno extern int errno; |