|
|
@ -28,7 +28,7 @@ typedef enum { |
|
|
|
|
|
|
|
/* the stack size depends on count of rules and count of numbers, in general |
|
|
|
* 65536 should be enough. Otherwise you need to increase it */ |
|
|
|
#define MAXSTACKDEPTH 65536 |
|
|
|
#define MAXSTACKDEPTH 65536u |
|
|
|
typedef enum { |
|
|
|
fc_true, |
|
|
|
fc_false, |
|
|
@ -58,7 +58,7 @@ typedef enum { |
|
|
|
fc_dummy |
|
|
|
} function_t; |
|
|
|
|
|
|
|
#define INTERNALSTACKDEPTH 8 |
|
|
|
#define INTERNALSTACKDEPTH 8u |
|
|
|
typedef struct internal_entry_s { |
|
|
|
int lineno; |
|
|
|
bool_t is_precondition; |
|
|
|