- Fixed: Removing malloc.h for every system because FreeBSD doesn't like

it is wrong.


SVN r1525 (trunk)
This commit is contained in:
Randy Heit 2009-04-08 04:14:37 +00:00
commit cc9efce818
2 changed files with 7 additions and 2 deletions

View file

@ -32,7 +32,12 @@
**
*/
#ifdef __FreeBSD__
#include <stdlib.h>
#include <malloc_np.h>
#else
#include <malloc.h>
#endif
#include "i_system.h"
#include "dobject.h"