diff options
Diffstat (limited to 'intl/textdomain.c')
-rw-r--r-- | intl/textdomain.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/intl/textdomain.c b/intl/textdomain.c index d197181..09530b8 100644 --- a/intl/textdomain.c +++ b/intl/textdomain.c @@ -1,5 +1,6 @@ /* textdomain.c -- implementation of the textdomain(3) function Copyright (C) 1995, 1996 Free Software Foundation, Inc. + Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995. 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 @@ -27,8 +28,8 @@ # include <string.h> #else # include <strings.h> -# if !defined (HAVE_MEMCPY) && defined (HAVE_BCOPY) && !defined (memcpy) -# define memcpy(Dst, Src, Num) bcopy (Src, Dst, Num) +# ifndef memcpy +# define memcpy(Dst, Src, Num) bcopy ((Src), (Dst), (Num)) # endif #endif |