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

@ -34,7 +34,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: uc.c,v 1.12 2008/02/05 20:18:57 adamdunkels Exp $
* $Id: uc.c,v 1.13 2008/02/24 22:05:27 adamdunkels Exp $
*/
/**
@ -82,7 +82,7 @@ recv_from_ibc(struct ibc_conn *ibc, rimeaddr_t *from)
static const struct ibc_callbacks uc = {recv_from_ibc};
/*---------------------------------------------------------------------------*/
void
uc_open(struct uc_conn *c, u16_t channel,
uc_open(struct uc_conn *c, uint16_t channel,
const struct uc_callbacks *u)
{
ibc_open(&c->c, channel, &uc);