diff options
author | Jim Meyering <jim@meyering.net> | 1996-11-04 18:01:20 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-11-04 18:01:20 +0000 |
commit | f1377589030ed04e265cfdf3d6c360659fc7a3a5 (patch) | |
tree | 06e9269d6db1a5f7d00c710b6e7798bd54c0c973 | |
parent | 895c2213dbc25d1bb496e787fb0387cb6ca2630d (diff) | |
download | coreutils-f1377589030ed04e265cfdf3d6c360659fc7a3a5.tar.xz |
libitize
-rw-r--r-- | lib/memcmp.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/memcmp.c b/lib/memcmp.c index 98f7ed791..6096651e5 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 + + |