gen_alloc.h
author tomas@localhost
Thu, 01 Nov 2007 14:46:11 +0100
changeset 0 c045670f36e9
permissions -rw-r--r--
Imported queue-fix-1.4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     1
#ifndef GEN_ALLOC_H
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     2
#define GEN_ALLOC_H
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     3
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     4
#define GEN_ALLOC_typedef(ta,type,field,len,a) \
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     5
  typedef struct ta { type *field; unsigned int len; unsigned int a; } ta;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     6
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     7
#endif