diff options
author | Roland McGrath <roland@gnu.org> | 1995-09-28 09:00:19 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-09-28 09:00:19 +0000 |
commit | 3ec41e0302fb7b3910edecfd30c97edba3a6e282 (patch) | |
tree | 64126b756c37dfcbca2564779896601d4fbed800 /sysdeps/generic/stpcpy.c | |
parent | f94f8067b18803b47153fa0f8f67fe5763a1cd3b (diff) | |
download | glibc-3ec41e0302fb7b3910edecfd30c97edba3a6e282.zip glibc-3ec41e0302fb7b3910edecfd30c97edba3a6e282.tar.gz glibc-3ec41e0302fb7b3910edecfd30c97edba3a6e282.tar.bz2 |
* sysdeps/mach/hurd/getcwd.c (__getcwd): Renamed from getcwd.
(getcwd): Define as weak alias.
* sysdeps/posix/getcwd.c: Likewise.
* sysdeps/stub/getcwd.c: Likewise.
* posix/unistd.h: Declare __getcwd.
* string/string.h: Declare __strcasecmp.
* sysdeps/generic/strcasecmp.c (__strcasecmp): Renamed from
strcasecmp.
(strcasecmp): Define as weak alias.
* string/string.h: Declare __stpcpy.
* sysdeps/generic/stpcpy.c (__stpcpy): Renamed from stpcpy.
(stpcpy): Define as weak alias.
Diffstat (limited to 'sysdeps/generic/stpcpy.c')
-rw-r--r-- | sysdeps/generic/stpcpy.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sysdeps/generic/stpcpy.c b/sysdeps/generic/stpcpy.c index dd96948..4dda9a1 100644 --- a/sysdeps/generic/stpcpy.c +++ b/sysdeps/generic/stpcpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1995 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 @@ -16,16 +16,14 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include <ansidecl.h> #include <string.h> - /* Copy SRC to DEST, returning the address of the terminating '\0' in DEST. */ char * -DEFUN(stpcpy, (dest, src), char *dest AND CONST char *src) +__stpcpy (char *dest, const char *src) { register char *d = dest; - register CONST char *s = src; + register const char *s = src; do *d++ = *s; @@ -33,3 +31,4 @@ DEFUN(stpcpy, (dest, src), char *dest AND CONST char *src) return d - 1; } +weak_alias (__stpcpy, stpcpy) |