rev 144 - trunk/src
SVN User <[email protected]>
| Newsgroups | gmane.comp.lang.prothon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: bcollins Date: 2004-03-26 20:37:29 -0500 (Fri, 26 Mar 2004) New Revision: 144 Modified: trunk/src/object.c trunk/src/prmalloc.c Log: Remove malloc.h and use stdlib.h, which should pull in malloc()/free() on any system. Modified: trunk/src/object.c =================================================================== --- trunk/src/object.c 2004-03-27 00:49:13 UTC (rev 143) +++ trunk/src/object.c 2004-03-27 01:37:29 UTC (rev 144) @@ -55,7 +55,6 @@ #include <stdlib.h> #include <stdio.h> -#include <malloc.h> #include <string.h> #include <time.h> #include "object.h" Modified: trunk/src/prmalloc.c =================================================================== --- trunk/src/prmalloc.c 2004-03-27 00:49:13 UTC (rev 143) +++ trunk/src/prmalloc.c 2004-03-27 01:37:29 UTC (rev 144) @@ -16,7 +16,7 @@ */ -#include <malloc.h> +#include <stdlib.h> #include <memory.h> #include "object.h"