Skip to content
Snippets Groups Projects
Commit 84f7f5f1 authored by deuce's avatar deuce
Browse files

Add u?intmax_t to fix the use of uintmax_t in scanf formats for ?modem.c and

sexyz.c
parent c75c84fa
No related branches found
No related tags found
No related merge requests found
...@@ -170,6 +170,9 @@ typedef unsigned long long int uint64_t; ...@@ -170,6 +170,9 @@ typedef unsigned long long int uint64_t;
#define INTTYPES_H_64BIT_PREFIX "ll" #define INTTYPES_H_64BIT_PREFIX "ll"
#endif #endif
typedef uint64_t uintmax_t;
typedef int64_t intmax_t;
/* printf integer formatters: */ /* printf integer formatters: */
#define PRId32 "d" #define PRId32 "d"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment