diff options
author | John Kohl <jtkohl@mit.edu> | 1989-11-08 09:59:30 +0000 |
---|---|---|
committer | John Kohl <jtkohl@mit.edu> | 1989-11-08 09:59:30 +0000 |
commit | 40a59e5155639151b369097fc9cecd5e47a0a278 (patch) | |
tree | a59571568ac84eae83abf7a40e76489a8e1b41d7 /zwgc | |
parent | 9f2ec493bf644bd9ffd045e0e24131ee3460509f (diff) |
add declarations of functions which got implicitly declared incorrectly.
Diffstat (limited to 'zwgc')
-rw-r--r-- | zwgc/exec.c | 2 | ||||
-rw-r--r-- | zwgc/formatter.c | 2 | ||||
-rw-r--r-- | zwgc/main.c | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/zwgc/exec.c b/zwgc/exec.c index 48064ec..674f637 100644 --- a/zwgc/exec.c +++ b/zwgc/exec.c @@ -34,6 +34,8 @@ static char rcsid_exec_c[] = "$Header$"; #include "variables.h" #include "notice.h" +static int exec_subtree(), exec_fields(); + /****************************************************************************/ /* */ /* Utility subroutines: */ diff --git a/zwgc/formatter.c b/zwgc/formatter.c index 41504c4..f62a43d 100644 --- a/zwgc/formatter.c +++ b/zwgc/formatter.c @@ -26,6 +26,8 @@ static char rcsid_formatter_c[] = "$Header$"; #include "formatter.h" #include "text_operations.h" +static int pure_text_length(), env_length(); + #ifdef notdef static character_class atsign_set = { /* '@' = 0x40 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, diff --git a/zwgc/main.c b/zwgc/main.c index 9a36922..f965cc3 100644 --- a/zwgc/main.c +++ b/zwgc/main.c @@ -35,7 +35,7 @@ static char rcsid_main_c[] = "$Header$"; #include "variables.h" extern void notice_handler(); -extern void setup_signals(); +static void setup_signals(); /* * Global zwgc-wide variables: |