summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/heapwalk.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-06-13 22:49:28 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-06-13 22:49:28 +0000
commit671e042e359c81852a4beb1a4434b1c6ae6880d1 (patch)
treebf6fb38290f6b062ae3baf40ef7a73bafded5bdf /cpukit/score/src/heapwalk.c
parent2009-06-13 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-671e042e359c81852a4beb1a4434b1c6ae6880d1.tar.bz2
2009-06-13 Joel Sherrill <joel.sherrill@oarcorp.com>
* score/src/heapwalk.c: Remove include of stdlib.h since abort was not called anymore.
Diffstat (limited to 'cpukit/score/src/heapwalk.c')
-rw-r--r--cpukit/score/src/heapwalk.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/cpukit/score/src/heapwalk.c b/cpukit/score/src/heapwalk.c
index 7831b1be9b..cdf6a54670 100644
--- a/cpukit/score/src/heapwalk.c
+++ b/cpukit/score/src/heapwalk.c
@@ -15,8 +15,6 @@
#include "config.h"
#endif
-#include <stdlib.h> /* abort */
-
#include <rtems/system.h>
#include <rtems/score/address.h>
#include <rtems/score/sysstate.h>
@@ -180,7 +178,7 @@ bool _Heap_Walk(
error = 1;
}
- if(do_dump && error)
+ if (do_dump && error)
_Internal_error_Occurred( INTERNAL_ERROR_CORE, true, 0xffff0000 );
return error;