#ifndef _primitives_
#define _primitives_

#include <stdio.h>
#define ALLOC_ERROR     1
#define IO_ERROR        2

AllocError ();
IOError ();
char *malloc ();

#endif

