marcan's patch until he gets commit access. Remove C library's includes from the firmware side since it's not available anyway and not used

This commit is contained in:
izsh@fail0verflow.com 2010-02-20 03:07:55 +00:00
commit 5e174a511b
8 changed files with 85 additions and 7 deletions

View file

@ -1,5 +1,10 @@
#include "unistd.h"
#include "stdint.h"
#ifndef LEGIC_PRNG_H__
#define LEGIC_PRNG_H__
#include <stdint.h>
extern void legic_prng_init(uint8_t init);
extern void legic_prng_forward(int count);
extern uint8_t legic_prng_get_bit();
#endif