Switched to C99 standard
This commit is contained in:
parent
e57368df3e
commit
86c01acd8c
2 changed files with 2 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
CC = gcc
|
||||
AS = as
|
||||
|
||||
CFLAGS = -Wall -pipe -Iinclude/
|
||||
CFLAGS = -Wall -pipe -std=c99 -Iinclude/
|
||||
OFLAGS =
|
||||
LFLAGS = $(CFLAGS) -Llib/
|
||||
ASFLAGS =
|
||||
|
|
|
|||
|
|
@ -18,6 +18,6 @@ void tvm_destroy(tvm_t* vm);
|
|||
|
||||
int tvm_interpret(tvm_t* vm, char* filename);
|
||||
void tvm_run(tvm_t* vm);
|
||||
inline void tvm_step(tvm_t* vm, int* instr_idx);
|
||||
void tvm_step(tvm_t* vm, int* instr_idx);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue