matter.c

Cross-platform minimalist libc
git clone git://git.finwo.net/lib/matter.c
Log | Files | Refs | README | LICENSE

stdlib.h (142B)


      1 #ifndef _STDLIB_H_
      2 #define _STDLIB_H_
      3 
      4 #include <stdint.h>
      5 #include <malloc.h>
      6 
      7 void srand(unsigned s);
      8 int rand(void);
      9 
     10 #endif // _STDLIB_H_