diff options
author | jkh <jkh@FreeBSD.org> | 1996-06-19 21:19:37 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-06-19 21:19:37 +0000 |
commit | d95e65608c2b585b0dba03329320c62dbaf1d0db (patch) | |
tree | 1b096f837c58ab3aa0b6357e10f1bcabee7bedda /lib/libforms/debug.c | |
parent | 0a694a6eae25dfbf183ebb754be70c0e8b12becb (diff) | |
download | FreeBSD-src-d95e65608c2b585b0dba03329320c62dbaf1d0db.zip FreeBSD-src-d95e65608c2b585b0dba03329320c62dbaf1d0db.tar.gz |
Remove libforms, it was never used.
Diffstat (limited to 'lib/libforms/debug.c')
-rw-r--r-- | lib/libforms/debug.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/libforms/debug.c b/lib/libforms/debug.c deleted file mode 100644 index 31d42e2..0000000 --- a/lib/libforms/debug.c +++ /dev/null @@ -1,21 +0,0 @@ -#ifdef DEBUG -#include <forms.h> - -int -debug_dump_bindings(char *key, void *data, void *arg) -{ - TUPLE *tuple = (TUPLE *)data; - - printf("%s, %d, %x\n", tuple->name, tuple->type, (int)tuple->addr); - - return (1); -} - -void -debug_dump_table(hash_table *htable) -{ - printf("Dumping table at address %x\n", htable); - hash_traverse(htable, debug_dump_bindings, NULL); - printf("------------------------------\n"); -} -#endif |