Restored compatibility with non-C99 platforms by sticking to Contiki datatypes.

This commit is contained in:
oliverschmidt 2007-08-10 08:01:17 +00:00
parent 296ad6cdb7
commit 5038537b8f
2 changed files with 12 additions and 12 deletions

View file

@ -28,10 +28,10 @@
*
* This file is part of the Contiki operating system.
*
* @(#)$Id: rand.h,v 1.2 2007/07/03 13:26:15 bg- Exp $
* @(#)$Id: rand.h,v 1.3 2007/08/10 08:02:01 oliverschmidt Exp $
*/
/* -*- C -*- */
/* @(#)$Id: rand.h,v 1.2 2007/07/03 13:26:15 bg- Exp $ */
/* @(#)$Id: rand.h,v 1.3 2007/08/10 08:02:01 oliverschmidt Exp $ */
#ifndef RAND_H
#define RAND_H
@ -50,7 +50,7 @@
* Comm. of the ACM, V. 31. No. 10, pp 1192-1201
*/
extern int32_t rand_state;
extern s32_t rand_state;
int rand(void);