From c59e581ef27b4b47f26ff6e42d506b8f2fc665f1 Mon Sep 17 00:00:00 2001 From: ceriel Date: Tue, 19 Feb 1991 15:28:48 +0000 Subject: [PATCH] Delinted a bit --- lang/m2/comp/main.c | 3 ++- lang/m2/comp/options.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lang/m2/comp/main.c b/lang/m2/comp/main.c index 6a5a30fc0..05c874439 100644 --- a/lang/m2/comp/main.c +++ b/lang/m2/comp/main.c @@ -69,6 +69,7 @@ main(argc, argv) exit(1); } exit(!Compile(Nargv[1], Nargv[2])); + /*NOTREACHED*/ } Compile(src, dst) @@ -195,7 +196,7 @@ static struct stdproc sysprocs[] = { { 0, 0 } }; -extern t_def *Enter(); +extern t_def *Enter(), *EnterType(); AddProcs(p) register struct stdproc *p; diff --git a/lang/m2/comp/options.c b/lang/m2/comp/options.c index 3f78bc97f..01ae92904 100644 --- a/lang/m2/comp/options.c +++ b/lang/m2/comp/options.c @@ -140,7 +140,7 @@ DoOption(text) if (++nDEF > mDEF) { DEFPATH = (char **) - Realloc(DEFPATH,(mDEF+=10)*sizeof(char *)); + Realloc((char *)DEFPATH,(unsigned)(mDEF+=10)*sizeof(char *)); } for (i = ndirs++; i < nDEF; i++) { -- 2.34.1