Made ohone functions extern in header file

This commit is contained in:
Christina Quast 2015-02-24 17:38:57 +01:00
parent 01bbdc3d52
commit 566d3f9e4a
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
// FIXME: static function definitions
uint32_t _ISO7816_GetChar( uint8_t *pCharToReceive );
uint32_t _ISO7816_SendChar( uint8_t CharToSend );
void Phone_Master_Init( void );
extern uint32_t _ISO7816_GetChar( uint8_t *pCharToReceive );
extern uint32_t _ISO7816_SendChar( uint8_t CharToSend );
extern void Phone_Master_Init( void );