comparison lib/stpcpy.c @ 7304:1c4ed7637c24

Include <config.h> unconditionally.
author Bruno Haible <bruno@clisp.org>
date Thu, 14 Sep 2006 14:18:36 +0000
parents b06ebe2b7e19
children 44fe37f21d92
comparison
equal deleted inserted replaced
7303:8fa5a2dcbf3b 7304:1c4ed7637c24
1 /* stpcpy.c -- copy a string and return pointer to end of new string 1 /* stpcpy.c -- copy a string and return pointer to end of new string
2 Copyright (C) 1992, 1995, 1997, 1998 Free Software Foundation, Inc. 2 Copyright (C) 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc.
3 3
4 NOTE: The canonical source of this file is maintained with the GNU C Library. 4 NOTE: The canonical source of this file is maintained with the GNU C Library.
5 Bugs can be reported to bug-glibc@prep.ai.mit.edu. 5 Bugs can be reported to bug-glibc@prep.ai.mit.edu.
6 6
7 This program is free software; you can redistribute it and/or modify it 7 This program is free software; you can redistribute it and/or modify it
16 16
17 You should have received a copy of the GNU General Public License 17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software Foundation, 18 along with this program; if not, write to the Free Software Foundation,
19 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ 19 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
20 20
21 #ifdef HAVE_CONFIG_H 21 #include <config.h>
22 # include <config.h>
23 #endif
24 22
25 #include <string.h> 23 #include <string.h>
26 24
27 #undef __stpcpy 25 #undef __stpcpy
28 #undef stpcpy 26 #undef stpcpy