1 #ifndef LI_RAND_H_ 2 #define LI_RAND_H_ 3 #include "first.h" 4 5 int li_rand_pseudo (void); 6 void li_rand_pseudo_bytes (unsigned char *buf, int num); 7 void li_rand_reseed (void); 8 int li_rand_bytes (unsigned char *buf, int num); 9 void li_rand_cleanup (void); 10 11 #endif 12