Skip to content

Commit

Permalink
Merge pull request #2 from yusefmaali/master
Browse files Browse the repository at this point in the history
Fixed types length on 64 bit architecture
  • Loading branch information
mort666 authored Sep 6, 2019
2 parents 9c06d26 + 6f9912c commit 2c09173
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/global.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@
typedef unsigned char *POINTER;

/* UINT2 defines a two byte word */
typedef unsigned short int UINT2;
typedef unsigned short UINT2;

/* UINT4 defines a four byte word */
typedef unsigned long int UINT4;
typedef unsigned int UINT4;

/* BYTE defines a unsigned character */
typedef unsigned char BYTE;

/* internal signed value */
typedef signed long int signeddigit;
typedef signed int signeddigit;

#ifndef NULL_PTR
#define NULL_PTR ((POINTER)0)
Expand Down

0 comments on commit 2c09173

Please sign in to comment.