From 25c7ba0ed78aea0a368bc178dd720a845dd515ac Mon Sep 17 00:00:00 2001 From: Perry Hung Date: Wed, 31 Mar 2010 21:29:29 -0400 Subject: Removed inttypes.h Removed inttypes.h from libmaple. Will have another pass through to use the standard libmaple types, but will come in another commit. --- core/ext_interrupts.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'core/ext_interrupts.h') diff --git a/core/ext_interrupts.h b/core/ext_interrupts.h index d0e6365..d9e773e 100644 --- a/core/ext_interrupts.h +++ b/core/ext_interrupts.h @@ -37,15 +37,14 @@ enum ExtInterruptError { EXT_INTERRUPT_INVALID_PIN = (-1), EXT_INTERRUPT_INVALID_FUNCTION = (-2), EXT_INTERRUPT_INVALID_MODE = (-3), - }; #ifdef __cplusplus extern "C"{ #endif -int attachInterrupt(uint8_t pin, voidFuncPtr, ExtInterruptTriggerMode mode); -int detachInterrupt(uint8_t pin); +int attachInterrupt(uint8 pin, voidFuncPtr, ExtInterruptTriggerMode mode); +int detachInterrupt(uint8 pin); #ifdef __cplusplus } -- cgit v1.2.3