From: Jim Meyering Date: Mon, 4 Nov 1996 18:01:20 +0000 (+0000) Subject: libitize X-Git-Tag: TEXTUTILS-1_19q~138 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1377589030ed04e265cfdf3d6c360659fc7a3a5;p=thirdparty%2Fcoreutils.git libitize --- diff --git a/lib/memcmp.c b/lib/memcmp.c index 98f7ed7911..6096651e5b 100644 --- a/lib/memcmp.c +++ b/lib/memcmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1993, 1995 Free Software Foundation, Inc. Contributed by Torbjorn Granlund (tege@sics.se). NOTE: The canonical source of this file is maintained with the GNU C Library. @@ -364,3 +364,10 @@ memcmp (s1, s2, len) return 0; } + +#ifdef weak_alias +#undef bcmp +weak_alias (memcmp, bcmp) +#endif + +