summaryrefslogtreecommitdiff
path: root/nuttx/include/assert.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-02-12 14:37:55 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-02-12 14:37:55 +0000
commitb769f6a93e42f6052d27f85dd38ea594361ce170 (patch)
tree30a0eaa4bcc50079c8545227554a9d47c336d8fe /nuttx/include/assert.h
parent84eb7fe1709023514ee0a1c85af34cda2a37bd07 (diff)
downloadpx4-nuttx-b769f6a93e42f6052d27f85dd38ea594361ce170.tar.gz
px4-nuttx-b769f6a93e42f6052d27f85dd38ea594361ce170.tar.bz2
px4-nuttx-b769f6a93e42f6052d27f85dd38ea594361ce170.zip
More z8 compilation changes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@671 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include/assert.h')
-rw-r--r--nuttx/include/assert.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/nuttx/include/assert.h b/nuttx/include/assert.h
index 5f69b7178..62c8baa25 100644
--- a/nuttx/include/assert.h
+++ b/nuttx/include/assert.h
@@ -41,6 +41,7 @@
************************************************************/
#include <sys/types.h>
+#include <nuttx/compiler.h>
/************************************************************
* Definitions
@@ -53,7 +54,7 @@
#undef ASSERTCODE
#undef DEBUGASSERT
-#if defined(__GNUC__) || defined(SDCC)
+#ifdef CONFIG_HAVE_FILENAME
# define ASSERT(f) \
{ if (!(f)) up_assert((const ubyte *)__FILE__, (int)__LINE__); }
@@ -105,7 +106,7 @@ extern "C" {
#define EXTERN extern
#endif
-#if defined(__GNUC__) || defined(SDCC)
+#ifdef CONFIG_HAVE_FILENAME
EXTERN void up_assert(const ubyte *filename, int linenum);
EXTERN void up_assert_code(const ubyte *filename, int linenum,
int error_code);