diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-08-27 21:08:51 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-08-27 21:08:51 +0000 |
commit | eb8af2eae1f65845096ba7c105cd6d96e1d1b881 (patch) | |
tree | 6dba75b785e34532578a4c74cfa0cba3adc259cd | |
parent | 2ce57142ab447480c01618048d60742dc2bc7291 (diff) |
don't mess w/ debugging symbols
-rw-r--r-- | sys/arch/i386/stand/libsa/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/i386/stand/libsa/debug_aout.c | 43 |
2 files changed, 2 insertions, 45 deletions
diff --git a/sys/arch/i386/stand/libsa/Makefile b/sys/arch/i386/stand/libsa/Makefile index db3741a1161..a09fc8e4cee 100644 --- a/sys/arch/i386/stand/libsa/Makefile +++ b/sys/arch/i386/stand/libsa/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.23 1997/08/13 04:03:30 mickey Exp $ +# $OpenBSD: Makefile,v 1.24 1997/08/27 21:08:49 mickey Exp $ LIB= sa @@ -38,7 +38,7 @@ SRCS+= bootp.c bootparam.c rarp.c SRCS+= ufs.c nfs.c cd9660.c # debugger -SRCS+= debug.c debug_aout.c +SRCS+= debug.c NOPROFILE=noprofile NOPIC=nopic diff --git a/sys/arch/i386/stand/libsa/debug_aout.c b/sys/arch/i386/stand/libsa/debug_aout.c deleted file mode 100644 index 78cb9a5c771..00000000000 --- a/sys/arch/i386/stand/libsa/debug_aout.c +++ /dev/null @@ -1,43 +0,0 @@ -/* $OpenBSD: debug_aout.c,v 1.2 1997/07/17 23:28:32 mickey Exp $ */ - -/* - * Copyright (c) 1997 Michael Shalayeff - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by Michael Shalayeff. - * 4. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - */ - -#include <lib/libsa/stand.h> -#include <sys/exec.h> -#include "debug.h" - -int -aout_init() -{ - return 0; -} |