skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

uint64-macros (405B)


      1 
      2 #ifndef INT_LEAST64_MIN
      3 # define INT_LEAST64_MIN INT64_MIN
      4 #endif
      5 
      6 #ifndef INT_FAST64_MIN
      7 # define INT_FAST64_MIN INT64_MIN
      8 #endif
      9 
     10 #ifndef INT_LEAST64_MAX 
     11 # define INT_LEAST64_MAX INT64_MAX
     12 #endif
     13 
     14 #ifndef INT_FAST64_MAX 
     15 # define INT_FAST64_MAX INT64_MAX
     16 #endif
     17 
     18 #ifndef UINT_LEAST64_MAX
     19 # define UINT_LEAST64_MAX UINT64_MAX
     20 #endif
     21 
     22 #ifndef UINT_FAST64_MAX
     23 # define UINT_FAST64_MAX UINT64_MAX
     24 #endif
     25