summaryrefslogtreecommitdiffstats
path: root/util.h
blob: 97e7ff7a8910a97788ea412c428de86e090e85c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _UTIL_H
#define _UTIL_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 */