Commit 9e95a876 9e95a8767cc9019bb307e64f9d3a5ed172cc1bbb by Sam Roberts

Now using xmalloc() from ../lib.

1 parent 4e28d683
......@@ -33,7 +33,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#include "xmalloc.h"
#include "xalloc.h"
#include "comparator.h"
#include "interp.h"
#include "script.h"
......
......@@ -30,7 +30,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#endif
#include <string.h> /* for strdup */
#include "xmalloc.h"
#include "xalloc.h"
#include "tree.h"
#include "sieve-gram.h"
......