diff options
author | 2015-07-29 10:42:37 +0000 | |
---|---|---|
committer | 2015-07-29 10:42:37 +0000 | |
commit | 00a823f06466ca9d34737ae29a50dc0790dfba0e (patch) | |
tree | 3ec7915ddc8d50a578d19f5b4ee3588d8d36062a | |
parent | fix bug in previous; was printing incorrect string for failed (diff) | |
download | wireguard-openbsd-00a823f06466ca9d34737ae29a50dc0790dfba0e.tar.xz wireguard-openbsd-00a823f06466ca9d34737ae29a50dc0790dfba0e.zip |
gc macro that's no longer used since the move to reallocarray
-rw-r--r-- | usr.bin/tsort/tsort.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tsort/tsort.c b/usr.bin/tsort/tsort.c index abbbbe222db..1a689f81fa3 100644 --- a/usr.bin/tsort/tsort.c +++ b/usr.bin/tsort/tsort.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tsort.c,v 1.25 2015/07/21 07:13:59 jasper Exp $ */ +/* $OpenBSD: tsort.c,v 1.26 2015/07/29 10:42:37 espie Exp $ */ /* ex:ts=8 sw=4: * * Copyright (c) 1999-2004 Marc Espie <espie@openbsd.org> @@ -145,7 +145,6 @@ static void enqueue(struct array *, struct node *); -#define erealloc(n, s) emem(realloc(n, s)) static void *hash_calloc(size_t, size_t, void *); static void hash_free(void *, void *); static void* entry_alloc(size_t, void *); |