From de491a6191b465edb7bd9a01a5177ac9bf836747 Mon Sep 17 00:00:00 2001 From: J08nY Date: Mon, 25 Nov 2019 21:25:29 +0100 Subject: Start Python codegen impl. --- pyecsca/codegen/coords.h | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'pyecsca/codegen/coords.h') diff --git a/pyecsca/codegen/coords.h b/pyecsca/codegen/coords.h index 751aeb6..6a1af7e 100644 --- a/pyecsca/codegen/coords.h +++ b/pyecsca/codegen/coords.h @@ -1,16 +1,10 @@ #ifndef COORDS_H_ #define COORDS_H_ -//point_t definition is variable -/* -typedef struct { - bn_t X; - bn_t Y; - bn_t Z; -} point_t; -*/ - -point_t *point_new(); +#include "bn.h" +#include "defs.h" + +point_t *point_new(void); point_t *point_copy(const point_t *from); -- cgit v1.3.1