summaryrefslogtreecommitdiff
path: root/lib/memcmp.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-11-04 18:01:20 +0000
committerJim Meyering <jim@meyering.net>1996-11-04 18:01:20 +0000
commitf1377589030ed04e265cfdf3d6c360659fc7a3a5 (patch)
tree06e9269d6db1a5f7d00c710b6e7798bd54c0c973 /lib/memcmp.c
parent895c2213dbc25d1bb496e787fb0387cb6ca2630d (diff)
downloadcoreutils-f1377589030ed04e265cfdf3d6c360659fc7a3a5.tar.xz
libitize
Diffstat (limited to 'lib/memcmp.c')
-rw-r--r--lib/memcmp.c9
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
+
+