Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/libexec/ld.aout_so Make this compile with -DDEBUG.



details:   https://anonhg.NetBSD.org/src/rev/99a21da1a94d
branches:  trunk
changeset: 499743:99a21da1a94d
user:      mycroft <mycroft%NetBSD.org@localhost>
date:      Tue Nov 28 06:01:34 2000 +0000

description:
Make this compile with -DDEBUG.

diffstat:

 libexec/ld.aout_so/malloc.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r 9d8bc39633de -r 99a21da1a94d libexec/ld.aout_so/malloc.c
--- a/libexec/ld.aout_so/malloc.c       Tue Nov 28 05:23:35 2000 +0000
+++ b/libexec/ld.aout_so/malloc.c       Tue Nov 28 06:01:34 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: malloc.c,v 1.6 1999/06/17 21:11:42 thorpej Exp $       */
+/*     $NetBSD: malloc.c,v 1.7 2000/11/28 06:01:34 mycroft Exp $       */
 
 /*
  * Copyright (c) 1983 Regents of the University of California.
@@ -38,7 +38,7 @@
 #if 0
 static char *sccsid = "from: @(#)malloc.c      5.11 (Berkeley) 2/23/91";
 #else
-__RCSID("$NetBSD: malloc.c,v 1.6 1999/06/17 21:11:42 thorpej Exp $");
+__RCSID("$NetBSD: malloc.c,v 1.7 2000/11/28 06:01:34 mycroft Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -138,7 +138,8 @@
 #if defined(DEBUG) || defined(RCHECK)
 #define        ASSERT(p)   if (!(p)) botch("p")
 #include <stdio.h>
-static
+static void botch __P((char *));
+static void
 botch(s)
        char *s;
 {



Home | Main Index | Thread Index | Old Index