unoidl2

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/unoidl2.git/
Log | Files | Refs

commit 96776cac56755f6e26b8ac7ab15e124605bd685e
parent 30fc41a9af1c51a99328b930c5538b093c9817b4
Author: Tomas Hlavaty <tom@logand.com>
Date:   Wed, 14 Dec 2011 01:18:07 +0100

some static linkage

Diffstat:
Munoidl2ast.c | 2+-
Munoidl2java.c | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/unoidl2ast.c b/unoidl2ast.c @@ -25,7 +25,7 @@ extern int yyparse(); extern Any ast; -void pr_all(Any x) { +static void pr_all(Any x) { for(; !null(x); x = cdr(x)) { print(car(x)); printf("\n\n"); diff --git a/unoidl2java.c b/unoidl2java.c @@ -46,7 +46,7 @@ static void pp_list(Any x, char *sep) { } } -Any module; +static Any module; static void pr_module(Any x, char *sep, int dot) { if(!null(x)) {