Switched to C99 standard

This commit is contained in:
Joseph Kogut 2013-01-20 14:14:35 -07:00
parent e57368df3e
commit 86c01acd8c
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
CC = gcc
AS = as
CFLAGS = -Wall -pipe -Iinclude/
CFLAGS = -Wall -pipe -std=c99 -Iinclude/
OFLAGS =
LFLAGS = $(CFLAGS) -Llib/
ASFLAGS =

View file

@ -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