summaryrefslogtreecommitdiffstats
path: root/dmake
diff options
context:
space:
mode:
authorKen Foskey <waratah@openoffice.org>2003-01-13 13:28:09 +0000
committerKen Foskey <waratah@openoffice.org>2003-01-13 13:28:09 +0000
commit0634d662e96dcc45752a5fdb69a3e6345a7402e9 (patch)
treec0f32f55a0ed97529f2337c7674c8827f0310132 /dmake
parent#106097# Correctly parse blocks that do not contain a local: section. (diff)
downloadcore-0634d662e96dcc45752a5fdb69a3e6345a7402e9.tar.gz
core-0634d662e96dcc45752a5fdb69a3e6345a7402e9.zip
dmake: Remove the incorrect definition of main to void
Diffstat (limited to 'dmake')
-rw-r--r--dmake/mac/main.c6
-rw-r--r--dmake/mac/public.h3
-rw-r--r--dmake/msdos/borland/bcc30/public.h3
-rw-r--r--dmake/msdos/borland/bcc40/public.h3
-rw-r--r--dmake/msdos/borland/bcc45/public.h3
-rw-r--r--dmake/msdos/borland/bcc50/public.h3
-rw-r--r--dmake/msdos/borland/tcc20/public.h3
-rw-r--r--dmake/msdos/microsft/msc51/public.h3
-rw-r--r--dmake/msdos/microsft/msc60/public.h3
-rw-r--r--dmake/msdos/zortech/public.h3
-rw-r--r--dmake/os2/ibm/icc/public.h3
-rw-r--r--dmake/os2/ibm/icc3/public.h3
-rw-r--r--dmake/qssl/public.h3
-rw-r--r--dmake/tos/public.h3
-rw-r--r--dmake/unix/386ix/public.h3
-rw-r--r--dmake/unix/bsd43/public.h3
-rw-r--r--dmake/unix/bsd43/uw/public.h3
-rw-r--r--dmake/unix/bsd43/vf/public.h3
-rw-r--r--dmake/unix/bsdarm32/public.h3
-rw-r--r--dmake/unix/coherent/ver40/public.h3
-rw-r--r--dmake/unix/coherent/ver42/public.h3
-rw-r--r--dmake/unix/cygwin/public.h5
-rw-r--r--dmake/unix/solaris/gnu/public.h3
-rw-r--r--dmake/unix/solaris/public.h3
-rw-r--r--dmake/unix/sysvr1/public.h3
-rw-r--r--dmake/unix/sysvr3/gnu/public.h3
-rw-r--r--dmake/unix/sysvr3/public.h3
-rw-r--r--dmake/unix/sysvr3/pwd/public.h3
-rw-r--r--dmake/unix/sysvr4/public.h3
-rw-r--r--dmake/unix/xenix/public.h3
-rw-r--r--dmake/unix/xenix/pwd/public.h3
-rw-r--r--dmake/win95/borland/bcc50/public.h3
-rw-r--r--dmake/win95/microsft/vpp40/public.h3
-rw-r--r--dmake/winnt/borland/bcc50/public.h3
-rw-r--r--dmake/winnt/microsft/vpp40/public.h3
35 files changed, 38 insertions, 72 deletions
diff --git a/dmake/mac/main.c b/dmake/mac/main.c
index 53cc7d7cd9fe..da718e8b3cf0 100644
--- a/dmake/mac/main.c
+++ b/dmake/mac/main.c
@@ -1,4 +1,4 @@
-/* RCS $Id: main.c,v 1.1.1.1 2000-09-22 15:33:27 hr Exp $
+/* RCS $Id: main.c,v 1.2 2003-01-13 14:27:58 waratah Exp $
--
-- SYNOPSIS
-- The real main function
@@ -37,7 +37,7 @@
* Put envp in environ and call dmake's main().
*/
#undef main
-void main(int argc, char **argv, char **envp) {
+int main(int argc, char **argv, char **envp) {
environ = envp;
dmakemain (argc, argv);
-} /* void main () */
+} /* int main () */
diff --git a/dmake/mac/public.h b/dmake/mac/public.h
index 31cc8fa62d49..73ea3568a342 100644
--- a/dmake/mac/public.h
+++ b/dmake/mac/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:27 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:27:58 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/msdos/borland/bcc30/public.h b/dmake/msdos/borland/bcc30/public.h
index a091150efedc..c026949bba30 100644
--- a/dmake/msdos/borland/bcc30/public.h
+++ b/dmake/msdos/borland/bcc30/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:28 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:27:59 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/msdos/borland/bcc40/public.h b/dmake/msdos/borland/bcc40/public.h
index a091150efedc..c026949bba30 100644
--- a/dmake/msdos/borland/bcc40/public.h
+++ b/dmake/msdos/borland/bcc40/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:28 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:27:59 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/msdos/borland/bcc45/public.h b/dmake/msdos/borland/bcc45/public.h
index a091150efedc..c026949bba30 100644
--- a/dmake/msdos/borland/bcc45/public.h
+++ b/dmake/msdos/borland/bcc45/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:28 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:27:59 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/msdos/borland/bcc50/public.h b/dmake/msdos/borland/bcc50/public.h
index 3130d161c24e..68e682ae4b69 100644
--- a/dmake/msdos/borland/bcc50/public.h
+++ b/dmake/msdos/borland/bcc50/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:29 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:00 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/msdos/borland/tcc20/public.h b/dmake/msdos/borland/tcc20/public.h
index 3130d161c24e..68e682ae4b69 100644
--- a/dmake/msdos/borland/tcc20/public.h
+++ b/dmake/msdos/borland/tcc20/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:29 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:00 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/msdos/microsft/msc51/public.h b/dmake/msdos/microsft/msc51/public.h
index 3130d161c24e..68e682ae4b69 100644
--- a/dmake/msdos/microsft/msc51/public.h
+++ b/dmake/msdos/microsft/msc51/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:29 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:00 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/msdos/microsft/msc60/public.h b/dmake/msdos/microsft/msc60/public.h
index 3130d161c24e..eef74b6e48c4 100644
--- a/dmake/msdos/microsft/msc60/public.h
+++ b/dmake/msdos/microsft/msc60/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:29 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:01 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/msdos/zortech/public.h b/dmake/msdos/zortech/public.h
index 89c586b44e5a..fc26a03ea1a4 100644
--- a/dmake/msdos/zortech/public.h
+++ b/dmake/msdos/zortech/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:29 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:01 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/os2/ibm/icc/public.h b/dmake/os2/ibm/icc/public.h
index 1a9d48a358ea..78d06695c74f 100644
--- a/dmake/os2/ibm/icc/public.h
+++ b/dmake/os2/ibm/icc/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:30 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:01 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/os2/ibm/icc3/public.h b/dmake/os2/ibm/icc3/public.h
index 1a9d48a358ea..afc05cad552e 100644
--- a/dmake/os2/ibm/icc3/public.h
+++ b/dmake/os2/ibm/icc3/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:30 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:02 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/qssl/public.h b/dmake/qssl/public.h
index 2b977c4ed6b6..577814ac1e20 100644
--- a/dmake/qssl/public.h
+++ b/dmake/qssl/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:30 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:02 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/tos/public.h b/dmake/tos/public.h
index 8302f0b29d56..187e5d430661 100644
--- a/dmake/tos/public.h
+++ b/dmake/tos/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:33 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:02 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/386ix/public.h b/dmake/unix/386ix/public.h
index eced883f353d..dea2bc27b6b3 100644
--- a/dmake/unix/386ix/public.h
+++ b/dmake/unix/386ix/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:33 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:03 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/bsd43/public.h b/dmake/unix/bsd43/public.h
index eced883f353d..dea2bc27b6b3 100644
--- a/dmake/unix/bsd43/public.h
+++ b/dmake/unix/bsd43/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:33 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:03 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/bsd43/uw/public.h b/dmake/unix/bsd43/uw/public.h
index da4cc6c0b7c4..dea2bc27b6b3 100644
--- a/dmake/unix/bsd43/uw/public.h
+++ b/dmake/unix/bsd43/uw/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:34 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:03 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/bsd43/vf/public.h b/dmake/unix/bsd43/vf/public.h
index da4cc6c0b7c4..6bfe2a8c0380 100644
--- a/dmake/unix/bsd43/vf/public.h
+++ b/dmake/unix/bsd43/vf/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:34 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:04 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/bsdarm32/public.h b/dmake/unix/bsdarm32/public.h
index da4cc6c0b7c4..6bfe2a8c0380 100644
--- a/dmake/unix/bsdarm32/public.h
+++ b/dmake/unix/bsdarm32/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:34 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:04 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/coherent/ver40/public.h b/dmake/unix/coherent/ver40/public.h
index da4cc6c0b7c4..6bfe2a8c0380 100644
--- a/dmake/unix/coherent/ver40/public.h
+++ b/dmake/unix/coherent/ver40/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:34 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:04 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/coherent/ver42/public.h b/dmake/unix/coherent/ver42/public.h
index 01e80862fbbd..a716896135d2 100644
--- a/dmake/unix/coherent/ver42/public.h
+++ b/dmake/unix/coherent/ver42/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:35 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:05 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/cygwin/public.h b/dmake/unix/cygwin/public.h
index 76f5911fa9fa..be9c814a6bf7 100644
--- a/dmake/unix/cygwin/public.h
+++ b/dmake/unix/cygwin/public.h
@@ -2,9 +2,9 @@
*
* $RCSfile: public.h,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: mh $ $Date: 2002-03-26 14:22:01 $
+ * last change: $Author: waratah $ $Date: 2003-01-13 14:28:05 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -109,7 +109,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/solaris/gnu/public.h b/dmake/unix/solaris/gnu/public.h
index 01e80862fbbd..66cd4d817002 100644
--- a/dmake/unix/solaris/gnu/public.h
+++ b/dmake/unix/solaris/gnu/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:35 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:06 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/solaris/public.h b/dmake/unix/solaris/public.h
index 01e80862fbbd..a716896135d2 100644
--- a/dmake/unix/solaris/public.h
+++ b/dmake/unix/solaris/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:35 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:05 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/sysvr1/public.h b/dmake/unix/sysvr1/public.h
index 01e80862fbbd..66cd4d817002 100644
--- a/dmake/unix/sysvr1/public.h
+++ b/dmake/unix/sysvr1/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:35 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:06 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/sysvr3/gnu/public.h b/dmake/unix/sysvr3/gnu/public.h
index d5c3111d1345..0f01813a3221 100644
--- a/dmake/unix/sysvr3/gnu/public.h
+++ b/dmake/unix/sysvr3/gnu/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:35 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:07 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -86,7 +86,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/sysvr3/public.h b/dmake/unix/sysvr3/public.h
index 01e80862fbbd..66cd4d817002 100644
--- a/dmake/unix/sysvr3/public.h
+++ b/dmake/unix/sysvr3/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:35 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:06 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/sysvr3/pwd/public.h b/dmake/unix/sysvr3/pwd/public.h
index ea923dad37d1..011a809f03c0 100644
--- a/dmake/unix/sysvr3/pwd/public.h
+++ b/dmake/unix/sysvr3/pwd/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:36 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:07 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/sysvr4/public.h b/dmake/unix/sysvr4/public.h
index ea923dad37d1..011a809f03c0 100644
--- a/dmake/unix/sysvr4/public.h
+++ b/dmake/unix/sysvr4/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:36 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:07 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/xenix/public.h b/dmake/unix/xenix/public.h
index ea923dad37d1..3e9f08135868 100644
--- a/dmake/unix/xenix/public.h
+++ b/dmake/unix/xenix/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:36 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:08 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/unix/xenix/pwd/public.h b/dmake/unix/xenix/pwd/public.h
index ea923dad37d1..3e9f08135868 100644
--- a/dmake/unix/xenix/pwd/public.h
+++ b/dmake/unix/xenix/pwd/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:36 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:08 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/win95/borland/bcc50/public.h b/dmake/win95/borland/bcc50/public.h
index 26d5871102a4..f6f7dd66fa51 100644
--- a/dmake/win95/borland/bcc50/public.h
+++ b/dmake/win95/borland/bcc50/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:36 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:08 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/win95/microsft/vpp40/public.h b/dmake/win95/microsft/vpp40/public.h
index f867838344c5..921b67b6f121 100644
--- a/dmake/win95/microsft/vpp40/public.h
+++ b/dmake/win95/microsft/vpp40/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:37 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:09 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/winnt/borland/bcc50/public.h b/dmake/winnt/borland/bcc50/public.h
index 8e9567e016a3..8e44903741b6 100644
--- a/dmake/winnt/borland/bcc50/public.h
+++ b/dmake/winnt/borland/bcc50/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:37 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:09 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));
diff --git a/dmake/winnt/microsft/vpp40/public.h b/dmake/winnt/microsft/vpp40/public.h
index f867838344c5..921b67b6f121 100644
--- a/dmake/winnt/microsft/vpp40/public.h
+++ b/dmake/winnt/microsft/vpp40/public.h
@@ -1,4 +1,4 @@
-/* RCS $Id: public.h,v 1.1.1.1 2000-09-22 15:33:37 hr Exp $
+/* RCS $Id: public.h,v 1.2 2003-01-13 14:28:09 waratah Exp $
-- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT
--
--
@@ -88,7 +88,6 @@ void Clear_prerequisites ANSI((CELLPTR));
int Test_circle ANSI((CELLPTR, int));
STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int));
t_attr Rcp_attribute ANSI((char *));
-void main ANSI((int, char **));
FILE *Openfile ANSI((char *, int, int));
FILE *Closefile ANSI(());
FILE *Search_file ANSI((char *, char **));