net/vmxnet3: remove local bool type
[dpdk.git] / drivers / net / vmxnet3 / base / vmxnet3_osdep.h
index c9b92b0..381a68d 100644 (file)
@@ -5,12 +5,12 @@
 #ifndef _VMXNET3_OSDEP_H
 #define _VMXNET3_OSDEP_H
 
+#include <stdbool.h>
+
 typedef uint64_t       uint64;
 typedef uint32_t       uint32;
 typedef uint16_t       uint16;
 typedef uint8_t                uint8;
-typedef int            bool;
-typedef char           Bool;
 
 #ifndef UNLIKELY
 #define UNLIKELY(x)  __builtin_expect((x),0)