summaryrefslogtreecommitdiff
path: root/src/stpcpy.c
diff options
context:
space:
mode:
authorMarcus Brinkmann <mb@g10code.com>2005-10-07 00:40:45 +0000
committerMarcus Brinkmann <mb@g10code.com>2005-10-07 00:40:45 +0000
commit7c557c3ebd61b13d478bc962e1035731a8d80567 (patch)
tree47ee3b83014ab0232ee87b9ed04472ee777b78c0 /src/stpcpy.c
parent2a5f006308d7da5809eceb7c084de98e54466882 (diff)
downloadlibassuan-7c557c3ebd61b13d478bc962e1035731a8d80567.tar.gz
2005-10-07 Marcus Brinkmann <marcus@g10code.de>
* configure.ac: Invoke AC_CANONICAL_HOST. Define _XOPEN_SOURCE, _XOPEN_SOURCE_EXTENDED and __EXTENSIONS__ on Solaris. Add stpcy as replacement function. Add setenv as replacement function (and check for unistd.h). src/ 2005-10-06 Marcus Brinkmann <marcus@g10code.de> * assuan-defs.h (memrchr) [!HAVE_MEMRCHR]: New prototype. (stpcpy) [!HAVE_STPCPY]: Likewise. * stpcpy.c: New LGPL'ed file from the GNU C Library. * setenv.c: New file. * assuan-domain-connect.c (read_int): New function. (write_int): New function. (domain_reader): Use read_int. (domain_sendfd): Use write_int.
Diffstat (limited to 'src/stpcpy.c')
-rw-r--r--src/stpcpy.c68
1 files changed, 45 insertions, 23 deletions
diff --git a/src/stpcpy.c b/src/stpcpy.c
index 1ff48ac..6e42911 100644
--- a/src/stpcpy.c
+++ b/src/stpcpy.c
@@ -1,33 +1,55 @@
-/* stpcpy.c - Replacement for stpcpy
- * Copyright (C) 2002 Free Software Foundation, Inc.
- *
- * This file is part of GnuPG.
- *
- * GnuPG 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 of the License, or
- * (at your option) any later version.
- *
- * GnuPG 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
- */
+/* Copyright (C) 1992, 1995, 1997, 2002, 2004 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ The GNU C Library 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
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with the GNU C Library; if not, write to the Free
+ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+ 02111-1307 USA. */
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#include <string.h>
+
+#undef __stpcpy
+#undef stpcpy
+
+#ifndef weak_alias
+# define __stpcpy stpcpy
+#endif
+
+/* Copy SRC to DEST, returning the address of the terminating '\0' in DEST. */
char *
-stpcpy (char *dest, const char *src)
+__stpcpy (dest, src)
+ char *dest;
+ const char *src;
{
register char *d = dest;
register const char *s = src;
-
+
do
*d++ = *s;
while (*s++ != '\0');
-
+
return d - 1;
}
-
+#ifdef libc_hidden_def
+libc_hidden_def (__stpcpy)
+#endif
+#ifdef weak_alias
+weak_alias (__stpcpy, stpcpy)
+#endif
+#ifdef libc_hidden_builtin_def
+libc_hidden_builtin_def (stpcpy)
+#endif