summaryrefslogtreecommitdiffstats
path: root/util.h
blob: 1dcddb67ec9387d3642273d6900756abf065b656 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _UTIL_H
#define _UTIL_H

#include <glob.h>
#include <stdio.h>
#include <stdlib.h>

static inline void freep(void *p) { free(*(void **)p); }
static inline void fclosep(FILE **p) { if (*p) fclose(*p); }
#define _cleanup_(x) __attribute__((cleanup(x)))
#define _cleanup_free_ _cleanup_(freep)

#endif  /* _UTIL_H */