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: polite.c,v 1.3 2007/11/26 23:22:41 adamdunkels Exp $
* $Id: polite.c,v 1.4 2008/02/24 22:05:27 adamdunkels Exp $
*/
/**
@ -95,7 +95,7 @@ send(void *ptr)
static const struct abc_callbacks abc = { recv };
/*---------------------------------------------------------------------------*/
void
polite_open(struct polite_conn *c, u16_t channel,
polite_open(struct polite_conn *c, uint16_t channel,
const struct polite_callbacks *cb)
{
abc_open(&c->c, channel, &abc);
@ -114,7 +114,7 @@ polite_close(struct polite_conn *c)
}
/*---------------------------------------------------------------------------*/
int
polite_send(struct polite_conn *c, clock_time_t interval, u8_t hdrsize)
polite_send(struct polite_conn *c, clock_time_t interval, uint8_t hdrsize)
{
if(c->q != NULL) {
/* If we are already about to send a packet, we cancel the old one. */