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