diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-05-04 20:28:41 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-05-04 20:28:41 +0000 |
commit | 78b219154584e6aec9e0b5a2fa3390b0df3e5d9c (patch) | |
tree | 965c99cd0b99933d2138158869d13936a481500f /sbin/dhclient/alloc.c | |
parent | 87c56ed5afea12c4e09fc8f649a6d48ffab4b6d0 (diff) |
remove things not used, spotted by lint mostly; ok henning
Diffstat (limited to 'sbin/dhclient/alloc.c')
-rw-r--r-- | sbin/dhclient/alloc.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sbin/dhclient/alloc.c b/sbin/dhclient/alloc.c index de129a1b650..cabb76d4298 100644 --- a/sbin/dhclient/alloc.c +++ b/sbin/dhclient/alloc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: alloc.c,v 1.8 2004/05/04 18:58:50 deraadt Exp $ */ +/* $OpenBSD: alloc.c,v 1.9 2004/05/04 20:28:40 deraadt Exp $ */ /* Memory allocation... */ @@ -74,9 +74,3 @@ new_hash_bucket(void) return (rval); } - -void -free_hash_bucket(struct hash_bucket *ptr) -{ - free(ptr); -} |