Skip to content

Commit

Permalink
Update type_def.h
Browse files Browse the repository at this point in the history
  • Loading branch information
ianhom authored Aug 10, 2016
1 parent 6b1b3a7 commit cd23182
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Pub/type_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ typedef unsigned char uint8; /* Type definition for 8-bit unsigned
typedef unsigned short int uint16; /* Type definition for 16-bit unsigned short int */
typedef unsigned int uint32; /* Type definition for 32-bit unsigned int */

typedef unsigned char int8; /* Type definition for 8-bit signed char */
typedef unsigned short int int16; /* Type definition for 16-bit signed short int */
typedef unsigned int int32; /* Type definition for 32-bit signed int */
typedef signed char int8; /* Type definition for 8-bit signed char */
typedef signed short int int16; /* Type definition for 16-bit signed short int */
typedef signed int int32; /* Type definition for 32-bit signed int */

#define NULL (0) /* Value for NULL pointer */

Expand Down

0 comments on commit cd23182

Please sign in to comment.