aboutsummaryrefslogtreecommitdiff
path: root/tcc.h
diff options
context:
space:
mode:
authorseyko <seyko2@gmail.com>2015-03-19 08:07:35 +0300
committerseyko <seyko2@gmail.com>2015-03-19 08:07:35 +0300
commite2650608cdeb865aec9095bfaa00c28b9803fc8a (patch)
tree936e6d38214127bd0b2d1642a19e7e62e56481b9 /tcc.h
parentaa812e87455271d2b73e7f41832aee496fe81ee0 (diff)
downloadtinycc-e2650608cdeb865aec9095bfaa00c28b9803fc8a.tar.gz
tinycc-e2650608cdeb865aec9095bfaa00c28b9803fc8a.tar.bz2
fix to allow build tcc by build-tcc.bat
move call to print_defines() from tcc.c to the libtcc.c define a print_defines() as a ST_FUNC
Diffstat (limited to 'tcc.h')
-rw-r--r--tcc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcc.h b/tcc.h
index 759d3f4..25c691a 100644
--- a/tcc.h
+++ b/tcc.h
@@ -1160,7 +1160,7 @@ ST_INLN void define_push(int v, int macro_type, int *str, Sym *first_arg);
ST_FUNC void define_undef(Sym *s);
ST_INLN Sym *define_find(int v);
ST_FUNC void free_defines(Sym *b);
-void print_defines(void);
+ST_FUNC void print_defines(void);
ST_FUNC Sym *label_find(int v);
ST_FUNC Sym *label_push(Sym **ptop, int v, int flags);
ST_FUNC void label_pop(Sym **ptop, Sym *slast);