Skip to content

Commit

Permalink
Replace non-standard #include <malloc.h> with <stdlib.h>
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Nov 6, 2010
1 parent 3d9531c commit 2411ab0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion l_poly.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
===========================================================================
*/

#include <malloc.h>
#include <stdlib.h>
#include "l_cmd.h"
#include "l_math.h"
#include "l_poly.h"
Expand Down
2 changes: 1 addition & 1 deletion qbsp.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#if defined(WIN32) || defined(_WIN32)
#include <io.h>
#endif
#include <malloc.h>
#include <stdlib.h>
#include "l_cmd.h"
#include "l_math.h"
#include "l_poly.h"
Expand Down

0 comments on commit 2411ab0

Please sign in to comment.