diff options
author | Jim Meyering <jim@meyering.net> | 1997-09-14 03:12:35 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-09-14 03:12:35 +0000 |
commit | 3e8068282b31fd470a1727171452ce5883e8f81f (patch) | |
tree | 7c968e27f65336ae1be09812fee461440ba6274c | |
parent | f8356568bd07a3840ee8e4c9770d962194fbe67f (diff) | |
download | coreutils-3e8068282b31fd470a1727171452ce5883e8f81f.tar.xz |
Include config.h.
-rw-r--r-- | lib/stpcpy.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/stpcpy.c b/lib/stpcpy.c index eea74652c..aa2aff1d9 100644 --- a/lib/stpcpy.c +++ b/lib/stpcpy.c @@ -1,6 +1,6 @@ /* Copyright (C) 1992, 1995, 1997 Free Software Foundation, Inc. -NOTE: The canonical source of this file is maintained with the +NOTE: The canonical source of this file is maintained with the GNU C Library. Bugs can be reported to bug-glibc@prep.ai.mit.edu. This program is free software; you can redistribute it and/or modify it @@ -14,9 +14,13 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software Foundation, +along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#if HAVE_CONFIG_H +# include <config.h> +#endif + #include <string.h> #ifndef weak_alias |