Displaying 2 results from an estimated 2 matches for "u_int16".
Did you mean:
  __int16
  
2004 Dec 19
2
[Bug 775] patches for Cray systems
http://bugzilla.mindrot.org/show_bug.cgi?id=775
djm at mindrot.org changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |WORKSFORME
------- Additional Comments From djm at mindrot.org  2004-12-20 10:59
2015 Jun 03
5
[PATCH 1/1] Updated opus_types.h to correctly support 8 and 64 bit types.
..._int64;
+   typedef UInt64 opus_uint64;
 
 #elif (defined(__APPLE__) && defined(__MACH__)) /* MacOS X Framework build */
 
-#  include <sys/types.h>
+#  include <inttypes.h>
+   typedef int8_t opus_int8;
+   typedef uint8_t opus_uint8;
    typedef int16_t opus_int16;
-   typedef u_int16_t opus_uint16;
+   typedef uint16_t opus_uint16;
    typedef int32_t opus_int32;
-   typedef u_int32_t opus_uint32;
+   typedef uint32_t opus_uint32;
+   typedef int64_t opus_int64;
+   typedef uint64_t opus_uint64;
+
+#elif defined(__HAIKU__)
 
+  /* Haiku */
+#  include <sys/types.h>
+   ty...