1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-07-02 22:43:41 +02:00
libantelope/vendor/secp256k1/repo/src/int128_impl.h

18 lines
376 B
C

#ifndef SECP256K1_INT128_IMPL_H
#define SECP256K1_INT128_IMPL_H
#include "util.h"
#include "int128.h"
#if defined(SECP256K1_WIDEMUL_INT128)
# if defined(SECP256K1_INT128_NATIVE)
# include "int128_native_impl.h"
# elif defined(SECP256K1_INT128_STRUCT)
# include "int128_struct_impl.h"
# else
# error "Please select int128 implementation"
# endif
#endif
#endif