Remove inline keyword.

This commit is contained in:
Richard Barry 2008-05-01 09:06:26 +00:00
parent 9c87f922b3
commit 019ab1b908
28 changed files with 3 additions and 52 deletions

View file

@ -113,7 +113,6 @@ void portENABLE_INTERRUPTS( void );
#define portOUTPUT_BYTE( xAddr, ucValue ) outp( xAddr, ucValue )
#define portINPUT_WORD( xAddr ) inpw( xAddr )
#define portOUTPUT_WORD( xAddr, usValue ) outpw( xAddr, usValue )
#define inline
/*-----------------------------------------------------------*/
/* Task function macros as described on the FreeRTOS.org WEB site. */

View file

@ -109,7 +109,6 @@ void portENABLE_INTERRUPTS( void );
/* Compiler specifics. */
#define portINPUT_BYTE( xAddr ) inp( xAddr )
#define portOUTPUT_BYTE( xAddr, ucValue ) outp( xAddr, ucValue )
#define inline
#define portNOP() __asm{ nop }
/*-----------------------------------------------------------*/