aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2015-03-25 12:45:06 +1000
committerinmarket <andrewh@inmarket.com.au>2015-03-25 12:45:06 +1000
commita59327fbbf26802cd8f9a0641f978f99dc9484bf (patch)
tree3dbd468f3d5bad4bc78f5b7046d8828d877fb66d /src
parentfe20965c3f465b4530da870dc1b248b23f229066 (diff)
downloaduGFX-a59327fbbf26802cd8f9a0641f978f99dc9484bf.tar.gz
uGFX-a59327fbbf26802cd8f9a0641f978f99dc9484bf.tar.bz2
uGFX-a59327fbbf26802cd8f9a0641f978f99dc9484bf.zip
Fix misspelling of KEIL preprocessor directive.
Diffstat (limited to 'src')
-rw-r--r--src/gos/gos_raw32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gos/gos_raw32.c b/src/gos/gos_raw32.c
index dabbe910..bb1b41ee 100644
--- a/src/gos/gos_raw32.c
+++ b/src/gos/gos_raw32.c
@@ -460,10 +460,10 @@ void gfxSleepMicroseconds(delaytime_t ms) {
* If they don't exist compile them to be the standard setjmp() function.
* Similarly for longjmp().
*/
-#if (!defined(setjmp) && !defined(_setjmp)) || defined(__KIEL__) || defined(__C51__)
+#if (!defined(setjmp) && !defined(_setjmp)) || defined(__KEIL__) || defined(__C51__)
#define _setjmp setjmp
#endif
-#if (!defined(longjmp) && !defined(_longjmp)) || defined(__KIEL__) || defined(__C51__)
+#if (!defined(longjmp) && !defined(_longjmp)) || defined(__KEIL__) || defined(__C51__)
#define _longjmp longjmp
#endif