zmap-freebsd/lib/random.h

10 lines
123 B
C
Raw Permalink Normal View History

2013-08-16 15:12:47 +00:00
#include <stdlib.h>
#include <stdint.h>
2013-08-26 18:30:02 +00:00
#ifndef RANDOM_H
#define RANDOM_H
2013-08-16 15:12:47 +00:00
int random_bytes(void *dst, size_t n);
#endif