summaryrefslogtreecommitdiff
path: root/testsuite/tests/rts/testheapalloced.c
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2019-07-10 11:54:47 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-07-14 01:21:48 -0400
commitd7c6c4717cdf1b7bd8550e37da66c52275c802f0 (patch)
tree7488a774c7b8e288b4373bcdc9121b53ba1492ea /testsuite/tests/rts/testheapalloced.c
parentbd9fc1b2adea718be089b8370d2e82ea55af6539 (diff)
downloadhaskell-d7c6c4717cdf1b7bd8550e37da66c52275c802f0.tar.gz
Expunge #ifdef and #ifndef from the codebase
These are unexploded minds as far as the linter is concerned. I don't want to hit in my MRs by mistake! I did this with `sed`, and then rolled back some changes in the docs, config.guess, and the linter itself.
Diffstat (limited to 'testsuite/tests/rts/testheapalloced.c')
-rw-r--r--testsuite/tests/rts/testheapalloced.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/tests/rts/testheapalloced.c b/testsuite/tests/rts/testheapalloced.c
index a28079572a..240f787c14 100644
--- a/testsuite/tests/rts/testheapalloced.c
+++ b/testsuite/tests/rts/testheapalloced.c
@@ -1,10 +1,10 @@
#include "Rts.h"
#include "RtsFlags.h"
-#ifdef DEBUG
+#if defined(DEBUG)
#define INLINE_HEADER
#endif
#include "MBlock.h"
-#ifdef DEBUG
+#if defined(DEBUG)
extern void *getFirstMBlock(void);
extern void *getNextMBlock(void *mblock);
#endif
@@ -42,7 +42,7 @@ int main (int argc, char *argv[])
a[j] = allocGroup_lock(rand() % MAXALLOC + 1);
}
-#ifdef DEBUG
+#if defined(DEBUG)
{
void *p;
i = 0;