aboutsummaryrefslogtreecommitdiff
path: root/interpreter/code.h
diff options
context:
space:
mode:
Diffstat (limited to 'interpreter/code.h')
-rw-r--r--interpreter/code.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/interpreter/code.h b/interpreter/code.h
index 8b7d060..0703fc5 100644
--- a/interpreter/code.h
+++ b/interpreter/code.h
@@ -8,10 +8,10 @@ typedef void (Code_0) (struct node**);
typedef void (Code_1) (struct node**, struct node*);
typedef void (Code_2) (struct node**, struct node*, struct node*);
-unsigned char code_find(char* name, void** function);
+unsigned char code_find(char *name, void **function);
#ifdef _FUSPEL_DEBUG
-char *code_find_name(void* f);
+char *code_find_name(void *f);
#endif
#endif