1 From 742fb110d9841a04b3ced256b0bf80ff304dcaff Mon Sep 17 00:00:00 2001
2 From: Khem Raj <raj.khem@gmail.com>
3 Date: Mon, 31 Aug 2015 05:45:08 +0000
4 Subject: [PATCH] Define _u32/__s32/__u16/__s16/__u8 in terms of c99 types
6 Signed-off-by: Khem Raj <raj.khem@gmail.com>
8 Upstream-Status: Pending
10 wireless_copy.h | 10 +++++-----
11 1 file changed, 5 insertions(+), 5 deletions(-)
13 diff --git a/wireless_copy.h b/wireless_copy.h
14 index 8208258..1171a35 100644
19 #include <sys/types.h>
21 -typedef __uint32_t __u32;
22 -typedef __int32_t __s32;
23 -typedef __uint16_t __u16;
24 -typedef __int16_t __s16;
25 -typedef __uint8_t __u8;
26 +typedef u_int32_t __u32;
27 +typedef int32_t __s32;
28 +typedef u_int16_t __u16;
29 +typedef int16_t __s16;
30 +typedef u_int8_t __u8;