ovsdb: Synchronize comments and code in ovsdb_file_commit().
[sliver-openvswitch.git] / datapath / linux / compat / include / linux / stddef.h
1 #ifndef __LINUX_STDDEF_WRAPPER_H
2 #define __LINUX_STDDEF_WRAPPER_H 1
3
4 #include_next <linux/stddef.h>
5
6 #ifdef __KERNEL__
7
8 #ifndef HAVE_BOOL_TYPE
9 enum {
10         false   = 0,
11         true    = 1
12 };
13 #endif /* !HAVE_BOOL_TYPE */
14
15 #endif /* __KERNEL__ */
16
17 #endif