summaryrefslogtreecommitdiff
path: root/gen_alloc.h
blob: bd55e5b2939ce31bd757602ee125bedd5a609c57 (plain)
1
2
3
4
5
6
7
8
9
/* Public domain. */

#ifndef GEN_ALLOC_H
#define GEN_ALLOC_H

#define GEN_ALLOC_typedef(ta,type,field,len,a) \
  typedef struct ta { type *field; unsigned int len; unsigned int a; } ta;

#endif