summaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2014-11-16 18:01:12 -0500
committerDave Reisner <dreisner@archlinux.org>2014-11-16 18:04:08 -0500
commit9bc85c516bed428b1bd8520f2c371d016af67a68 (patch)
treea8506729b319624f80bc16a85a1133f46187bb4b /util.h
parent3857cd02e80e371747005f358701a463b5365b04 (diff)
downloadexpac-9bc85c516bed428b1bd8520f2c371d016af67a68.tar.xz
move flag parsing out of expac_new
Diffstat (limited to 'util.h')
-rw-r--r--util.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/util.h b/util.h
index 6d50426..1dcddb6 100644
--- a/util.h
+++ b/util.h
@@ -7,7 +7,6 @@
static inline void freep(void *p) { free(*(void **)p); }
static inline void fclosep(FILE **p) { if (*p) fclose(*p); }
-static inline void globfreep(glob_t *p) { globfree(p); }
#define _cleanup_(x) __attribute__((cleanup(x)))
#define _cleanup_free_ _cleanup_(freep)