Changed all occurences of u8_t and u16_t to uint8_t and uint16_t

This commit is contained in:
adamdunkels 2008-02-24 22:05:27 +00:00
parent 17f13e38e8
commit d99ca27820
47 changed files with 222 additions and 222 deletions

View file

@ -33,7 +33,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: ibc.c,v 1.12 2008/01/23 16:10:10 adamdunkels Exp $
* $Id: ibc.c,v 1.13 2008/02/24 22:05:27 adamdunkels Exp $
*/
/**
@ -78,7 +78,7 @@ recv_from_abc(struct abc_conn *bc)
static const struct abc_callbacks ibc = {recv_from_abc};
/*---------------------------------------------------------------------------*/
void
ibc_open(struct ibc_conn *c, u16_t channel,
ibc_open(struct ibc_conn *c, uint16_t channel,
const struct ibc_callbacks *u)
{
abc_open(&c->c, channel, &ibc);