Skip to content

Commit

Permalink
Correct compatibility typedef
Browse files Browse the repository at this point in the history
  • Loading branch information
Etienne Guesnet committed Jan 9, 2020
1 parent 5328f70 commit a564133
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/ma_global.h
Original file line number Diff line number Diff line change
Expand Up @@ -583,8 +583,8 @@ typedef void *gptr; /* Generic pointer */
typedef char *gptr; /* Generic pointer */
#endif
#ifndef HAVE_INT_8_16_32
typedef char int8; /* Signed integer >= 8 bits */
typedef short int16; /* Signed integer >= 16 bits */
typedef signed char int8; /* Signed integer >= 8 bits */
typedef signed short int16; /* Signed integer >= 16 bits */
#endif
#ifndef HAVE_UCHAR
typedef unsigned char uchar; /* Short for unsigned char */
Expand Down

0 comments on commit a564133

Please sign in to comment.