rust-secp256k1-unsafe-fast/secp256k1-sys/depend/secp256k1/src/int128_struct.h

15 lines
262 B
C

#ifndef SECP256K1_INT128_STRUCT_H
#define SECP256K1_INT128_STRUCT_H
#include <stdint.h>
#include "util.h"
typedef struct {
uint64_t lo;
uint64_t hi;
} rustsecp256k1_v0_9_2_uint128;
typedef rustsecp256k1_v0_9_2_uint128 rustsecp256k1_v0_9_2_int128;
#endif