diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-02-02 18:37:32 -0500 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-02-02 18:37:32 -0500 |
commit | 7236712c760324fca98c1f0c342000324cfaacb1 (patch) | |
tree | 412dd128406be31b0360e748edbcdc9496e582f8 /lib | |
parent | 2af9351db3aa97da9b0d3f23d53a593bc96c8a8e (diff) | |
download | c++-7236712c760324fca98c1f0c342000324cfaacb1.tar.gz c++-7236712c760324fca98c1f0c342000324cfaacb1.tar.bz2 c++-7236712c760324fca98c1f0c342000324cfaacb1.zip |
fixed type header
Diffstat (limited to 'lib')
-rw-r--r-- | lib/types.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/types.h b/lib/types.h index 982db47..3bca58c 100644 --- a/lib/types.h +++ b/lib/types.h @@ -9,8 +9,8 @@ typedef uint_fast64_t count_t; #define MAX_Q 256 -#define PRID PRIu8 -#define PRIL PRIu16 -#define PRIcount PRIu64 -#define PRIq PRIu8 +#define PRIq PRIuFAST8 +#define PRID PRIuFAST8 +#define PRIL PRIuFAST16 +#define PRIcount PRIuFAST64 |