blob: 0b37e673caa52aef75118e103e3909b4ca7b15f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef SIGNAL_UTARRAY_H
#define SIGNAL_UTARRAY_H
#include "signal_protocol.h"
#define oom() do { \
result = SG_ERR_NOMEM; \
goto complete; \
} while(0)
#include "utarray.h"
#endif /* SIGNAL_UTARRAY_H */
|