diff options
author | dianshi <dianshi@main.lv> | 2020-03-23 18:41:18 +0000 |
---|---|---|
committer | dianshi <dianshi@main.lv> | 2020-03-23 18:41:18 +0000 |
commit | c0a63c9cfde70d6fb94e3ae646536bb10732c7c6 (patch) | |
tree | f5a070992bbfcb345a1aaad5cad4b24b3f045c41 /H64E-2 | |
parent | 608dd9cbc015f4a30a76a7a5de8e0221da4db4e3 (diff) | |
parent | 248bbd7aec91f03cfe35fdfb707be510381bbbfa (diff) | |
download | H64D-2-c0a63c9cfde70d6fb94e3ae646536bb10732c7c6.tar.gz H64D-2-c0a63c9cfde70d6fb94e3ae646536bb10732c7c6.zip |
Latest repo
Diffstat (limited to 'H64E-2')
-rw-r--r-- | H64E-2/h64e-model.h | 1 | ||||
-rw-r--r-- | H64E-2/h64e.h | 2 | ||||
-rw-r--r-- | H64E-2/main.c | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/H64E-2/h64e-model.h b/H64E-2/h64e-model.h index 84fcbf2..3692a26 100644 --- a/H64E-2/h64e-model.h +++ b/H64E-2/h64e-model.h @@ -12,6 +12,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <stdint.h> typedef int (*trnf_clb)(char*); diff --git a/H64E-2/h64e.h b/H64E-2/h64e.h index d61f60b..7871d21 100644 --- a/H64E-2/h64e.h +++ b/H64E-2/h64e.h @@ -11,6 +11,8 @@ #include <stdio.h> #include <ctype.h> +#include <stdlib.h> +#include <stdint.h> #include "h64e-model.h" /* Set data structure from arguments and use to handle data diff --git a/H64E-2/main.c b/H64E-2/main.c index 30f1bef..57f996a 100644 --- a/H64E-2/main.c +++ b/H64E-2/main.c @@ -415,7 +415,6 @@ int main(int argc, const char * argv[]) { buf_out[out_bytes] = 0x00; printf("%s",buf_out); } - break; } |