diff options
author | Jim Meyering <jim@meyering.net> | 2005-09-23 12:42:45 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-09-23 12:42:45 +0000 |
commit | 81d380e3779811c85fd7c1493d038e8df4de32e2 (patch) | |
tree | ed87eda144b9d3948a48d050a61fe1a0e6fffa2c /lib | |
parent | 769a7368674bec50dad2b9ffd8c365d6e9c1535c (diff) | |
download | coreutils-81d380e3779811c85fd7c1493d038e8df4de32e2.tar.xz |
Include <config.h>. Otherwise builds with strict
C89 (e.g., Sun's /opt/SUNWspro/bin/c89) would fail due to the use
of `inline'.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/strnumcmp-in.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/strnumcmp-in.h b/lib/strnumcmp-in.h index 195047313..19f3dceaf 100644 --- a/lib/strnumcmp-in.h +++ b/lib/strnumcmp-in.h @@ -19,6 +19,10 @@ /* Written by Mike Haertel. */ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + #include "strnumcmp.h" #include <stddef.h> |