Fix a compile error when CONFIG_ARCH_INTERRUPTSTACK is turned on for Cortex-M*

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4134 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2011-12-04 23:42:38 +00:00
parent 7513483666
commit f2c2a8aa98

View File

@ -122,7 +122,7 @@ extern uint32_t g_heapbase;
#if CONFIG_ARCH_INTERRUPTSTACK > 3
#if defined(CONFIG_ARCH_CORTEXM3) || defined(CONFIG_ARCH_CORTEXM4)
extern void g_intstackbase;
extern uint32_t g_intstackbase;
# else
extern uint32_t g_userstack;
# endif