From: Ben Pfaff Date: Fri, 3 Sep 2004 06:45:20 +0000 (+0000) Subject: Add hash.c to lib sources (!). X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5b41db0cbeeafe156b3096b92be7ddb2b1968d4;p=pintos-anon Add hash.c to lib sources (!). --- diff --git a/src/Makefile.inc b/src/Makefile.inc index 3ac0c6e..9d92909 100644 --- a/src/Makefile.inc +++ b/src/Makefile.inc @@ -39,6 +39,7 @@ LIB_SRC += lib.c # Standard C library. LIB_SRC += random.c # Pseudo-random numbers. LIB_SRC += list.c # Doubly-linked lists. LIB_SRC += bitmap.c # Bitmaps. +LIB_SRC += hash.c # Hash tables. # Filesystem code. FILESYS_SRC = filesys.c # Filesystem core.