diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2019-07-11 17:46:58 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2019-07-11 17:46:58 +0000 |
commit | 7e1e6cf1584c5f1c0d6c892d013ed522fb8a8bc1 (patch) | |
tree | 0518ba66d0f3f79776ed82cd87b7128dd329f6da /src/headers/uint64-macros | |
parent | 9ec6602c9d3c1a8801d996aa3a56c779ce1c5f70 (diff) | |
download | skalibs-7e1e6cf1584c5f1c0d6c892d013ed522fb8a8bc1.tar.xz |
Better with the new files added >.>
Diffstat (limited to 'src/headers/uint64-macros')
-rw-r--r-- | src/headers/uint64-macros | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/headers/uint64-macros b/src/headers/uint64-macros new file mode 100644 index 0000000..c186f07 --- /dev/null +++ b/src/headers/uint64-macros @@ -0,0 +1,25 @@ + +#ifndef INT_LEAST64_MIN +# define INT_LEAST64_MIN INT64_MIN +#endif + +#ifndef INT_FAST64_MIN +# define INT_FAST64_MIN INT64_MIN +#endif + +#ifndef INT_LEAST64_MAX +# define INT_LEAST64_MAX INT64_MAX +#endif + +#ifndef INT_FAST64_MAX +# define INT_FAST64_MAX INT64_MAX +#endif + +#ifndef UINT_LEAST64_MAX +# define UINT_LEAST64_MAX UINT64_MAX +#endif + +#ifndef UINT_FAST64_MAX +# define UINT_FAST64_MAX UINT64_MAX +#endif + |