diff options
author | Camil Staps | 2016-10-07 21:21:40 +0200 |
---|---|---|
committer | Camil Staps | 2016-10-07 21:21:40 +0200 |
commit | f8e50700cd0eb93154f5c025ef20d428986b856c (patch) | |
tree | e239bc8748edf2b1b80bf532dd46b6ddb5ab8614 /interpreter/code.h | |
parent | Resolve #12, don't show code keyword in debug graph (diff) |
Cleanup (resolves #9)
Diffstat (limited to 'interpreter/code.h')
-rw-r--r-- | interpreter/code.h | 4 |
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 |