blob: 682fc0f0bf51c1219e0b36ef3d71f1aa2852ebcb (
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 */
|