[project @ 2005-02-23 10:59:17 by simonmar]
authorsimonmar <unknown>
Wed, 23 Feb 2005 10:59:17 +0000 (10:59 +0000)
committersimonmar <unknown>
Wed, 23 Feb 2005 10:59:17 +0000 (10:59 +0000)
Move include <stdlib.h> later

ghc/rts/Arena.c

index 2c478a7..76ac23c 100644 (file)
    which most allocations are small.
    -------------------------------------------------------------------------- */
 
-#include <stdlib.h>
 #include "Rts.h"
 #include "RtsUtils.h"
 #include "BlockAlloc.h"
 #include "Arena.h"
 
+#include <stdlib.h>
+
 // Each arena struct is allocated using malloc().
 struct _Arena {
     bdescr *current;