fix bracket evaluation
[calc.git] / alloc.h
1 #ifndef __ALLOC_H__
2 #define __ALLOC_H__
3
4 #include <stddef.h>
5
6 void *callocordie (size_t count, size_t size);
7
8 #endif /* __ALLOC_H__ */
9
10 /* vim: set ts=4 sw=4 et: */