Go to the documentation of this file.
31 fprintf(stderr,
"FATAL ERROR: ");
36 static inline void *
xmalloc(
size_t len)
41 die(
"malloc() failed\n");
46 static inline void *xrealloc(
void *
p,
size_t len)
48 void *
new = realloc(p, len);
51 die(
"realloc() failed (len=%d)\n", len);
148 #define USAGE_TYPE_MSG \
149 "<type>\ts=string, i=int, u=unsigned, x=hex\n" \
150 "\tOptional modifier prefix:\n" \
151 "\t\thh or b=byte, h=2 byte, l=4 byte (default)\n";