summaryrefslogtreecommitdiff
path: root/lib/memcmp.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-11-04 17:57:34 +0000
committerJim Meyering <jim@meyering.net>1996-11-04 17:57:34 +0000
commit974c1be5ddd0807bca0dcfd4bdf023213d99a2ba (patch)
tree0ee5342b235401cff777865159e76b873ed6b650 /lib/memcmp.c
parent3694c647bbc717913a28b5ad214a8540e7e725cf (diff)
downloadgnulib-974c1be5ddd0807bca0dcfd4bdf023213d99a2ba.tar.gz
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 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
+
+