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. ...@@ -33,7 +33,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
33 #include <stdlib.h> 33 #include <stdlib.h>
34 #include <assert.h> 34 #include <assert.h>
35 #include <string.h> 35 #include <string.h>
36 #include "xmalloc.h" 36 #include "xalloc.h"
37 #include "comparator.h" 37 #include "comparator.h"
38 #include "interp.h" 38 #include "interp.h"
39 #include "script.h" 39 #include "script.h"
......
...@@ -30,7 +30,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ...@@ -30,7 +30,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
30 #endif 30 #endif
31 31
32 #include <string.h> /* for strdup */ 32 #include <string.h> /* for strdup */
33 #include "xmalloc.h" 33 #include "xalloc.h"
34 34
35 #include "tree.h" 35 #include "tree.h"
36 #include "sieve-gram.h" 36 #include "sieve-gram.h"
......