1 #ifndef _LTT_WRAPPER_UUID_H
2 #define _LTT_WRAPPER_UUID_H
5 * Copyright (C) 2011 Mathieu Desnoyers (mathieu.desnoyers@efficios.com)
7 * Dual LGPL v2.1/GPL v2 license.
10 #include <linux/version.h>
12 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,35))
13 #include <linux/uuid.h>
16 #include <linux/random.h>
23 void uuid_le_gen(uuid_le
*u
)
25 generate_random_uuid(u
->b
);
29 #endif /* _LTT_WRAPPER_UUID_H */
This page took 0.035036 seconds and 5 git commands to generate.