csecp256k1

Haskell FFI bindings to bitcoin-core/secp256k1 (docs.ppad.tech/csecp256k1).
git clone git://git.ppad.tech/csecp256k1.git
Log | Files | Refs | README | LICENSE

int128_impl.h (376B)


      1 #ifndef SECP256K1_INT128_IMPL_H
      2 #define SECP256K1_INT128_IMPL_H
      3 
      4 #include "util.h"
      5 
      6 #include "int128.h"
      7 
      8 #if defined(SECP256K1_WIDEMUL_INT128)
      9 #  if defined(SECP256K1_INT128_NATIVE)
     10 #    include "int128_native_impl.h"
     11 #  elif defined(SECP256K1_INT128_STRUCT)
     12 #    include "int128_struct_impl.h"
     13 #  else
     14 #    error "Please select int128 implementation"
     15 #  endif
     16 #endif
     17 
     18 #endif