queue.h revision 6ee777de8b35a3a18da424356aebe9ec743dc497
1#pragma clang system_header
2
3void free(void *);
4#define FREE_POINTER(x) free(x)
5
6