diff options
| author | bozo.kopic <bozo@kopic.xyz> | 2021-12-22 03:31:04 +0100 |
|---|---|---|
| committer | bozo.kopic <bozo@kopic.xyz> | 2021-12-22 03:31:04 +0100 |
| commit | 7dedbce91b8cb6cfbb1571f2c6dccb968d93351d (patch) | |
| tree | 68670b3ff3f2b913fdf79bcbd881dc64de678fb7 /src_c/common.h | |
| parent | 3b22a7aee8644b26da7babfc9ea83b9cb8c7289c (diff) | |
WIP c implementation
Diffstat (limited to 'src_c/common.h')
| -rw-r--r-- | src_c/common.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src_c/common.h b/src_c/common.h index e8eb9d1..16aeb9b 100644 --- a/src_c/common.h +++ b/src_c/common.h @@ -1,14 +1,12 @@ #ifndef OPCUT_COMMON_H #define OPCUT_COMMON_H - -#import <stdbool.h> -#import <stdio.h> +#include <stdbool.h> +#include <stdio.h> #define OPCUT_SUCCESS 0 -#define OPCUT_ERROR -1 -#define OPCUT_UNSOLVABLE 1 - +#define OPCUT_ERROR 1 +#define OPCUT_UNSOLVABLE 2 #ifdef __cplusplus extern "C" { |
