From 5195be912eb257c05a0c97e561e72f01af2583ff Mon Sep 17 00:00:00 2001 From: peter Date: Sun, 1 Sep 1996 10:22:36 +0000 Subject: Merge of 4.4-Lite2 sh source, plus some gcc -Wall cleaning. This is a merge of parallel duplicate work by Steve Price and myself. :-] There are some changes to the build that are my fault... mkinit.c was trying (poorly) to duplicate some of the work that make(1) is designed to do. The Makefile hackery is my fault too, the depend list was incomplete because of some explicit OBJS+= entries, so mkdep wasn't picking up their source file #includes. This closes a pile of /bin/sh PR's, but not all of them.. Submitted by: Steve Price , peter --- bin/sh/init.h | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) (limited to 'bin/sh/init.h') diff --git a/bin/sh/init.h b/bin/sh/init.h index 8466409..eff47ef 100644 --- a/bin/sh/init.h +++ b/bin/sh/init.h @@ -33,16 +33,10 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)init.h 8.1 (Berkeley) 5/31/93 - * $Id$ + * @(#)init.h 8.2 (Berkeley) 5/4/95 + * $Id: init.h,v 1.2 1994/09/24 02:57:37 davidg Exp $ */ -#ifdef __STDC__ -void init(void); -void reset(void); -void initshellproc(void); -#else -void init(); -void reset(); -void initshellproc(); -#endif +void init __P((void)); +void reset __P((void)); +void initshellproc __P((void)); -- cgit v1.1