From 0de95730ad2991479f44ea4afe83e8861c9c3ca0 Mon Sep 17 00:00:00 2001 From: grischka Date: Sun, 20 Dec 2009 20:33:41 +0100 Subject: build from multiple objects: fix other targets --- tccgen.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tccgen.c') diff --git a/tccgen.c b/tccgen.c index 363e6f9..b608c1f 100644 --- a/tccgen.c +++ b/tccgen.c @@ -364,7 +364,7 @@ static Sym *external_sym(int v, CType *type, int r) } /* push a reference to global symbol v */ -static void vpush_global_sym(CType *type, int v) +ST_FUNC void vpush_global_sym(CType *type, int v) { Sym *sym; CValue cval; @@ -897,7 +897,7 @@ static void vrotb(int n) /* rotate n first stack elements to the top I1 ... In -> In I1 ... I(n-1) [top is right] */ -static void vrott(int n) +ST_FUNC void vrott(int n) { int i; SValue tmp; @@ -912,7 +912,7 @@ static void vrott(int n) /* like vrott but in other direction In ... I1 -> I(n-1) ... I1 In [top is right] */ -void vnrott(int n) +ST_FUNC void vnrott(int n) { int i; SValue tmp; -- cgit v1.3.1