Import from old repository commit 61ef2b42a9c4ba8e1600f15bb0236765edc2ad45.
[cascardo/ovs.git] / datapath / linux-2.6 / compat-2.6 / include / linux / random.h
1 #ifndef __LINUX_RANDOM_WRAPPER_H
2 #define __LINUX_RANDOM_WRAPPER_H 1
3
4 #include_next <linux/random.h>
5
6 #include <linux/version.h>
7 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)
8
9 #ifdef __KERNEL__
10 u32 random32(void);
11 void srandom32(u32 seed);
12 #endif /* __KERNEL__ */
13
14 #endif /* linux kernel < 2.6.19 */
15
16
17 #endif