diff options
| author | J08nY | 2017-04-07 02:45:32 +0200 |
|---|---|---|
| committer | J08nY | 2017-04-07 02:45:32 +0200 |
| commit | 7f4596f2735d6011f7413edd7211b8673ecb4a14 (patch) | |
| tree | d2c745ee2bb615933a9efde7476ef258319609db /src/cm | |
| parent | 59b338cf8734f89c04042f217fcccf8509c3a197 (diff) | |
| download | ecgen-7f4596f2735d6011f7413edd7211b8673ecb4a14.tar.gz ecgen-7f4596f2735d6011f7413edd7211b8673ecb4a14.tar.zst ecgen-7f4596f2735d6011f7413edd7211b8673ecb4a14.zip | |
Fix binary field curve generation, move config into config.h
Diffstat (limited to 'src/cm')
| -rw-r--r-- | src/cm/cm.c | 1 | ||||
| -rw-r--r-- | src/cm/cm.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/cm/cm.c b/src/cm/cm.c index 92d1c66..c1e3393 100644 --- a/src/cm/cm.c +++ b/src/cm/cm.c @@ -3,5 +3,6 @@ * Copyright (C) 2017 J08nY */ #include "cm.h" +#include "io/config.h" int cm_do(config_t *cfg) { return INT_MIN; } diff --git a/src/cm/cm.h b/src/cm/cm.h index 14d4fea..29632fc 100644 --- a/src/cm/cm.h +++ b/src/cm/cm.h @@ -6,6 +6,7 @@ * @file cm.h */ #include "io/cli.h" +#include "io/config.h" #ifndef ECGEN_CM_H #define ECGEN_CM_H |
