#include <gvpr/gprstate.h>
#include <ast/error.h>
#include <ast/sfstr.h>
+#include <stdbool.h>
static int name_used;
-int validTVT(long long c) {
+bool validTVT(long long c) {
return ((TV_flat <= c) && (c <= TV_prepostrev));
}
#include <sfio/sfio.h>
#include "cgraph.h"
#include <ast/ast.h>
+#include <stdbool.h>
#include <vmalloc/vmalloc.h>
#include <expr/expr.h>
#include "gvpr.h"
extern gvprbinding* findBinding(Gpr_t* state, char*);
extern void closeGPRState(Gpr_t* state);
extern void initGPRState(Gpr_t *, Vmalloc_t *);
- extern int validTVT(long long);
+ extern bool validTVT(long long);
#ifdef __cplusplus
}