types: Add u8 and u16
authorSamuel Ortiz <sameo@linux.intel.com>
Fri, 29 Apr 2011 16:42:53 +0000 (18:42 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Fri, 21 Oct 2011 06:54:02 +0000 (23:54 -0700)
include/types.h

index ef7fdec..fd8d790 100644 (file)
@@ -19,6 +19,9 @@
  *
  */
 
+#ifndef __NEAR_TYPES_H
+#define __NEAR_TYPES_H
+
 #ifndef        FALSE
 #define        FALSE   (0)
 #endif
@@ -28,4 +31,7 @@
 #endif
 
 typedef int    near_bool_t;
+typedef unsigned char  near_uint8_t;
+typedef unsigned short near_uint16_t;
 
+#endif