Updated for C_ prototypes
authorceriel <none@none>
Wed, 10 Nov 1993 15:07:12 +0000 (15:07 +0000)
committerceriel <none@none>
Wed, 10 Nov 1993 15:07:12 +0000 (15:07 +0000)
40 files changed:
util/ceg/defaults/not_impl/not_impl.c
util/ceg/defaults/pseudo/C_close.c
util/ceg/defaults/pseudo/C_df_dlb.c
util/ceg/defaults/pseudo/C_df_dnam.c
util/ceg/defaults/pseudo/C_df_ilb.c
util/ceg/defaults/pseudo/C_end.c
util/ceg/defaults/pseudo/C_end_narg.c
util/ceg/defaults/pseudo/C_exa_dlb.c
util/ceg/defaults/pseudo/C_exa_dnam.c
util/ceg/defaults/pseudo/C_exp.c
util/ceg/defaults/pseudo/C_ina_dlb.c
util/ceg/defaults/pseudo/C_ina_dnam.c
util/ceg/defaults/pseudo/C_init.c
util/ceg/defaults/pseudo/C_inp.c
util/ceg/defaults/pseudo/C_insertpart.c
util/ceg/defaults/pseudo/C_magic.c
util/ceg/defaults/pseudo/C_pro.c
util/ceg/defaults/pseudo/C_pro_narg.c
util/ceg/defaults/storage/C_bss_cst.c
util/ceg/defaults/storage/C_bss_dlb.c
util/ceg/defaults/storage/C_bss_dnam.c
util/ceg/defaults/storage/C_bss_ilb.c
util/ceg/defaults/storage/C_bss_pnam.c
util/ceg/defaults/storage/C_con_cst.c
util/ceg/defaults/storage/C_con_dlb.c
util/ceg/defaults/storage/C_con_dnam.c
util/ceg/defaults/storage/C_con_ilb.c
util/ceg/defaults/storage/C_con_pnam.c
util/ceg/defaults/storage/C_con_scon.c
util/ceg/defaults/storage/C_hol_cst.c
util/ceg/defaults/storage/C_hol_dlb.c
util/ceg/defaults/storage/C_hol_dnam.c
util/ceg/defaults/storage/C_hol_ilb.c
util/ceg/defaults/storage/C_hol_pnam.c
util/ceg/defaults/storage/C_rom_cst.c
util/ceg/defaults/storage/C_rom_dlb.c
util/ceg/defaults/storage/C_rom_dnam.c
util/ceg/defaults/storage/C_rom_ilb.c
util/ceg/defaults/storage/C_rom_pnam.c
util/ceg/defaults/storage/C_rom_scon.c

index 8391c16..4a7eaf0 100644 (file)
@@ -1,6 +1,7 @@
 #include <system.h>
 #include "back.h"
 
+void
 not_implemented( instr)
 char *instr;
 {
index bd41a47..af83253 100644 (file)
@@ -4,6 +4,7 @@
 
 extern int B_busy; 
 
+void
 C_close()
 {
        assert( B_busy);
index 053b299..0a5a136 100644 (file)
@@ -2,6 +2,7 @@
 #include <em.h>
 #include "back.h"
 
+void
 C_df_dlb( l)
 label l;
 
index 70ac6fc..4d6a97a 100644 (file)
@@ -2,6 +2,7 @@
 #include <em.h>
 #include "back.h"
 
+void
 C_df_dnam( s)
 char *s;
 {
index e377f98..852572c 100644 (file)
@@ -4,6 +4,7 @@
 
 extern int B_procno;
 
+void
 C_df_ilb( l)
 label l;
 {
index 8dc6c5f..11f34c8 100644 (file)
@@ -5,6 +5,7 @@
 extern int B_locals_created;
 extern int B_procno;
 
+void
 C_end( l)
 arith l;
 {      
index 129617f..23f2fd1 100644 (file)
@@ -4,6 +4,7 @@
 
 extern int B_locals_created; 
 
+void
 C_end_narg()
 {
        assert( B_locals_created);
index 7d34fd4..eceb72c 100644 (file)
@@ -2,6 +2,7 @@
 #include <em.h>
 #include "back.h"
 
+void
 C_exa_dlb( l)
 label l;
 {
index 8f2174a..b241e0c 100644 (file)
@@ -2,6 +2,7 @@
 #include <em.h>
 #include "back.h"
 
+void
 C_exa_dnam( s)
 char *s;
 {
index e8c0b14..f5667ab 100644 (file)
@@ -2,6 +2,7 @@
 #include <em.h>
 #include "back.h"
 
+void
 C_exp( s)
 char *s;
 {
index a621873..7e163ee 100644 (file)
@@ -2,6 +2,7 @@
 #include <em.h>
 #include "back.h"
 
+void
 C_ina_dlb( l)
 label l;
 {
index e2bc103..1d41b6b 100644 (file)
@@ -2,6 +2,7 @@
 #include <em.h>
 #include "back.h"
 
+void
 C_ina_dnam( s)
 char *s;
 {
index 2c9fee6..220340e 100644 (file)
@@ -3,6 +3,7 @@
 #include <system.h>
 #include "mach.h"
 
+void
 C_init( wsize, psize)
 arith wsize, psize;
 {
index d54fe1c..28e474b 100644 (file)
@@ -2,6 +2,7 @@
 #include <em.h>
 #include "back.h"
 
+void
 C_inp( s)
 char *s;
 {
index 97c65a0..50331be 100644 (file)
@@ -2,6 +2,7 @@
 #include <em.h>
 #include "back.h"
 
+void
 C_insertpart( d)
 int d;
 
@@ -15,6 +16,7 @@ int d;
 }
 
 
+void
 C_beginpart( d)
 int d;
 
@@ -28,6 +30,7 @@ int d;
 }
 
 
+void
 C_endpart( d)
 int d;
 
@@ -41,6 +44,7 @@ int d;
 }
 
 
+int
 C_getid()
 {
        static int id = 0;
index 17b23c3..0c42945 100644 (file)
@@ -1,6 +1,7 @@
 #define CODE_EXPANDER
 #include <em.h>
 
+void
 C_magic()
 {
 }
index af5f3a5..60e9720 100644 (file)
@@ -5,6 +5,7 @@
 extern int B_locals_created;
 extern int B_procno;
 
+void
 C_pro( s, l)
 char *s;
 arith l;
index dd103f5..24c8444 100644 (file)
@@ -5,6 +5,7 @@
 extern int B_locals_created; 
 extern int B_procno; 
 
+void
 C_pro_narg( s)
 char*s;
 
index 242c31b..ec704a9 100644 (file)
@@ -29,6 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
+void
 C_bss_cst( n, w, i)
 arith n, w;
 int i;
index 12d1db2..07b3a19 100644 (file)
@@ -29,6 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
+void
 C_bss_dlb( n, l, offs, i)
 arith n, offs;
 label l;
index 293cb70..582fb09 100644 (file)
@@ -29,6 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
+void
 C_bss_dnam( n, s, offs, i)
 arith n, offs;
 char *s;
index e9db6e1..0b93f18 100644 (file)
@@ -31,6 +31,7 @@
 
 extern int B_procno;
 
+void
 C_bss_ilb( n, l, i)
 arith n;
 label l;
index 4531932..5c8d481 100644 (file)
@@ -29,6 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
+void
 C_bss_pnam( n, s, i)
 arith n;
 char *s;
index cf5ccad..21ff391 100644 (file)
@@ -29,6 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
+void
 C_con_dlb( g, o)
 label g;
 arith o;
index c2eb63e..a51bb6e 100644 (file)
@@ -29,6 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
+void
 C_con_dnam( g, o)
 char *g;
 arith o;
index 25150da..896e407 100644 (file)
@@ -31,6 +31,7 @@
 
 extern int B_procno;
 
+void
 C_con_ilb( l)
 label l;
 {
index a0aa0f7..21566f9 100644 (file)
@@ -29,6 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
+void
 C_con_pnam( p)
 char *p;
 {
index c09136d..035fb1e 100644 (file)
@@ -29,6 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
+void
 C_con_scon( s, n)
 char *s;
 arith n;
index 4dc16b0..9712bdf 100644 (file)
@@ -31,6 +31,7 @@
 
 extern int B_holno;
 
+void
 C_hol_cst( n, w, i)
 arith n, w;
 int i;
index 58f44a0..f7edd03 100644 (file)
@@ -31,6 +31,7 @@
 
 extern int B_holno;
 
+void
 C_hol_dlb( n, l, offs, i)
 arith n, offs;
 label l;
index d9b7c18..4ea5b46 100644 (file)
@@ -31,6 +31,7 @@
 
 extern int B_holno;
 
+void
 C_hol_dnam( n, s, offs, i)
 arith n, offs;
 char *s;
index 20be435..e375c83 100644 (file)
@@ -31,6 +31,7 @@
 
 extern int B_holno, B_procno;
 
+void
 C_hol_ilb( n, l, i)
 arith n;
 label l;
index e9e488f..96c79dc 100644 (file)
@@ -31,6 +31,7 @@
 
 extern int B_holno;
 
+void
 C_hol_pnam( n, s, i)
 arith n;
 char *s;
index 4046433..0e6053e 100644 (file)
@@ -29,6 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
+void
 C_rom_cst( c)
 arith c;
 {
index ba6cde5..1dae389 100644 (file)
@@ -29,6 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
+void
 C_rom_dlb( g, o)
 label g;
 arith o;
index 9f802b3..3424ef6 100644 (file)
@@ -29,6 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
+void
 C_rom_dnam( g, o)
 char *g;
 arith o;
index fd8d6d4..17023ea 100644 (file)
@@ -31,6 +31,7 @@
 
 extern int B_procno;
 
+void
 C_rom_ilb( l)
 label l;
 {
index 6bf305f..0d18fe0 100644 (file)
@@ -29,6 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
+void
 C_rom_pnam( p)
 char *p;
 {
index edd4e15..6e7be18 100644 (file)
@@ -29,6 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
+void
 C_rom_scon( s, n)
 char *s;
 arith n;