Converted deprecated uIP types in the network stack to standard C99 names (in stdint.h)

This commit is contained in:
Nicholas J Humfrey 2012-02-17 22:45:13 +00:00
parent 022d7193d1
commit 3fe55673d3
39 changed files with 572 additions and 572 deletions

View file

@ -57,7 +57,7 @@
*
* \param c The character to be put on the serial device.
*/
void slipdev_char_put(u8_t c);
void slipdev_char_put(uint8_t c);
/**
* Poll the serial device for a character.
@ -77,11 +77,11 @@ void slipdev_char_put(u8_t c);
* \retval 0 If no character is available.
* \retval Non-zero If a character is available.
*/
u8_t slipdev_char_poll(u8_t *c);
uint8_t slipdev_char_poll(uint8_t *c);
void slipdev_init(void);
u8_t slipdev_send(void);
u16_t slipdev_poll(void);
uint8_t slipdev_send(void);
uint16_t slipdev_poll(void);
#endif /* __SLIPDEV_H__ */