diff options
author | Roland McGrath <roland@gnu.org> | 1996-03-17 12:36:52 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-03-17 12:36:52 +0000 |
commit | 9b431e31e15b4620c862208c1079fdace62313aa (patch) | |
tree | cca13ab8d19b11603196355f137caca29bc851b3 /db | |
parent | 5aab07eb5615fa5baec4161579f03c72280b88e2 (diff) | |
download | glibc-9b431e31e15b4620c862208c1079fdace62313aa.zip glibc-9b431e31e15b4620c862208c1079fdace62313aa.tar.gz glibc-9b431e31e15b4620c862208c1079fdace62313aa.tar.bz2 |
Sun Mar 17 07:19:33 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>cvs/libc-960318
* db/Makefile (CFLAGS-hash_func.c): New variable; pass -Wno-unused.
(CFLAGS): Append -Wno-unitialized.
* sysdeps/alpha/memchr.S: New file.
* sysdeps/alpha/memchr.c: Obsolete file removed.
* string/tester.c: Soup up memchr tests.
Diffstat (limited to 'db')
-rw-r--r-- | db/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/db/Makefile b/db/Makefile index e41614a..48e2570 100644 --- a/db/Makefile +++ b/db/Makefile @@ -26,3 +26,10 @@ distribute := compat.h \ include ../Rules CPPFLAGS += -D__DBINTERFACE_PRIVATE + +# This file defines some static functions for alternative hash algorithms +# that are not actually used. +CFLAGS-hash_func.c := -Wno-unused + +# The db code outsmarts the compiler frequently. +override CFLAGS += -Wno-uninitialized |