diff options
author | Bruno Haible <bruno@clisp.org> | 2003-02-13 21:36:47 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:09:14 +0200 |
commit | 9566a6e26b2c4288f4f11bd2e44939e6b8b0d8d7 (patch) | |
tree | ebbef18b5f5cd4ae62d80f7d729a4b36bb4ee52e /lib | |
parent | 1c5ac15b64cc6a8ab22afd5b135da5808ffc3d39 (diff) | |
download | external_gettext-9566a6e26b2c4288f4f11bd2e44939e6b8b0d8d7.zip external_gettext-9566a6e26b2c4288f4f11bd2e44939e6b8b0d8d7.tar.gz external_gettext-9566a6e26b2c4288f4f11bd2e44939e6b8b0d8d7.tar.bz2 |
Move lib/stpcpy.h to gettext-tools/lib/stpcpy.h.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/stpcpy.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/stpcpy.h b/lib/stpcpy.h deleted file mode 100644 index b579c5c..0000000 --- a/lib/stpcpy.h +++ /dev/null @@ -1,33 +0,0 @@ -/* String copying. - Copyright (C) 1995, 2001, 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 - the Free Software Foundation; either version 2, or (at your option) - any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - 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, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ - -#ifndef _STPCPY_H -#define _STPCPY_H - -#if HAVE_STPCPY - -/* Get stpcpy() declaration. */ -#include <string.h> - -#else - -/* Copy SRC to DST, returning the address of the terminating '\0' in DST. */ -extern char *stpcpy (char *dst, const char *src); - -#endif - -#endif /* _STPCPY_H */ |