1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-06-21 02:08:18 +02:00
libantelope/vendor/secp256k1-0.3.0/src/int128_struct.h

14 lines
229 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;
} secp256k1_uint128;
typedef secp256k1_uint128 secp256k1_int128;
#endif