Added signed 32 bit data type.
This commit is contained in:
parent
813b27d234
commit
4fd1e3ece0
9 changed files with 42 additions and 12 deletions
|
@ -32,7 +32,7 @@
|
|||
*
|
||||
* This file is part of the Contiki desktop OS
|
||||
*
|
||||
* $Id: contiki-conf.h,v 1.6 2007/04/11 00:28:26 oliverschmidt Exp $
|
||||
* $Id: contiki-conf.h,v 1.7 2007/05/12 21:01:54 oliverschmidt Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -77,6 +77,14 @@ typedef uint16_t u16_t;
|
|||
*/
|
||||
typedef uint32_t u32_t;
|
||||
|
||||
/**
|
||||
* The 32-bit signed data type.
|
||||
*
|
||||
* This may have to be tweaked for your particular compiler. "signed
|
||||
* short" works for most compilers.
|
||||
*/
|
||||
typedef int32_t s32_t;
|
||||
|
||||
/**
|
||||
* The statistics data type.
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue