#include <lib/libsa/stand.h> rather than <stand.h> or "stand.h"

This commit is contained in:
junyoung 2005-06-28 21:00:41 +00:00
parent efdde612c9
commit e63501d234
51 changed files with 107 additions and 105 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: console.c,v 1.5 2002/01/26 13:18:58 aymeric Exp $ */
/* $NetBSD: console.c,v 1.6 2005/06/28 21:03:01 junyoung Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@ -42,7 +42,7 @@
#include <sys/types.h>
#include <stand.h>
#include <lib/libsa/stand.h>
#include "samachdep.h"
#include "amigatypes.h"

View File

@ -1,5 +1,5 @@
/*
* $NetBSD: main.c,v 1.18 2005/06/28 14:45:47 junyoung Exp $
* $NetBSD: main.c,v 1.19 2005/06/28 21:03:01 junyoung Exp $
*
*
* Copyright (c) 1996,1999 Ignatios Souvatzis
@ -44,7 +44,7 @@
#include <include/cpu.h>
#include <saerrno.h>
#include <stand.h>
#include <lib/libsa/stand.h>
#include "libstubs.h"
#include "samachdep.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: twiddle.c,v 1.2 2003/08/07 16:26:46 agc Exp $ */
/* $NetBSD: twiddle.c,v 1.3 2005/06/28 21:03:01 junyoung Exp $ */
/*-
* Copyright (c) 1993
@ -31,9 +31,9 @@
* @(#)printf.c 8.1 (Berkeley) 6/11/93
*/
/* From: $NetBSD: twiddle.c,v 1.2 2003/08/07 16:26:46 agc Exp $ */
/* From: $NetBSD: twiddle.c,v 1.3 2005/06/28 21:03:01 junyoung Exp $ */
#include "stand.h"
#include <lib/libsa/stand.h>
const static char chars[4] = {'|', '/', '-', '\\'};

View File

@ -1,5 +1,5 @@
/*
* $NetBSD: xd.c,v 1.6 2005/06/23 19:44:00 junyoung Exp $
* $NetBSD: xd.c,v 1.7 2005/06/28 21:03:01 junyoung Exp $
*
* Copyright (c) 1996 Ignatios Souvatzis.
* Copyright (c) 1995 Waldi Ravens.
@ -33,7 +33,7 @@
#include <sys/types.h>
#include <stand.h>
#include <lib/libsa/stand.h>
#include <ufs.h>
#include <ustarfs.h>

View File

@ -1,5 +1,5 @@
/*
* $NetBSD: main.c,v 1.3 2002/12/10 17:14:06 thorpej Exp $
* $NetBSD: main.c,v 1.4 2005/06/28 21:03:01 junyoung Exp $
*
*
* Copyright (c) 1996,1999 Ignatios Souvatzis
@ -44,7 +44,7 @@
#include <include/cpu.h>
#include <saerrno.h>
#include <stand.h>
#include <lib/libsa/stand.h>
#include "libstubs.h"
#include "samachdep.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: bootxx.c,v 1.10 2005/06/28 14:52:07 junyoung Exp $ */
/* $NetBSD: bootxx.c,v 1.11 2005/06/28 21:03:02 junyoung Exp $ */
/*
* Copyright (c) 1995 Waldi Ravens.
@ -32,7 +32,7 @@
#define boot_BSD bsd_startup
#include <stand.h>
#include <lib/libsa/stand.h>
#include <atari_stand.h>
#include <string.h>
#include <libkern.h>
@ -61,7 +61,7 @@ bootxx(void *readsector, void *disklabel, int autoboot)
setheap(end, (void*)(LOADADDR3 - 4));
printf("\033v\nNetBSD/atari secondary bootloader"
" ($Revision: 1.10 $)\n\n");
" ($Revision: 1.11 $)\n\n");
if (init_dskio(readsector, disklabel, -1))
return -1;

View File

@ -1,4 +1,4 @@
/* $NetBSD: filesystem.c,v 1.5 2005/06/23 19:44:00 junyoung Exp $ */
/* $NetBSD: filesystem.c,v 1.6 2005/06/28 21:03:02 junyoung Exp $ */
/*
* Copyright (c) 1993 Philip A. Nelson.
@ -31,7 +31,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stand.h>
#include <lib/libsa/stand.h>
#include <ufs.h>
struct fs_ops file_system[] = {

View File

@ -1,4 +1,4 @@
/* $NetBSD: bootxxx.c,v 1.1.1.1 2001/10/13 20:06:57 leo Exp $ */
/* $NetBSD: bootxxx.c,v 1.2 2005/06/28 21:03:02 junyoung Exp $ */
/*
* Copyright (c) 2001 Leo Weppelman.
@ -33,7 +33,7 @@
#define boot_BSD bsd_startup
#include <stand.h>
#include <lib/libsa/stand.h>
#include <atari_stand.h>
#include <string.h>
#include <libkern.h>
@ -61,7 +61,7 @@ bootxxx(readsector, disklabel, od)
/* XXX: Limit should be 16MB */
setheap(end, (void*)0x1000000);
printf("\033v\nNetBSD/Atari tertiary bootloader "
"($Revision: 1.1.1.1 $)\n\n");
"($Revision: 1.2 $)\n\n");
if (init_dskio(readsector, disklabel, od->rootfs))
return(-1);

View File

@ -1,4 +1,4 @@
/* $NetBSD: dev.c,v 1.2 2003/08/07 16:27:06 agc Exp $ */
/* $NetBSD: dev.c,v 1.3 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1993
@ -31,6 +31,6 @@
* @(#)dev.c 8.1 (Berkeley) 6/11/93
*/
#include "stand.h"
#include <lib/libsa/stand.h>
int errno;

View File

@ -1,4 +1,4 @@
/* $NetBSD: diskio.c,v 1.2 1997/06/28 21:36:45 leo Exp $ */
/* $NetBSD: diskio.c,v 1.3 2005/06/28 21:03:02 junyoung Exp $ */
/*
* Copyright (c) 1995 Waldi Ravens.
@ -30,7 +30,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "stand.h"
#include <lib/libsa/stand.h>
#include "atari_stand.h"
#include <sys/disklabel.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: aout.c,v 1.7 2005/06/28 14:22:21 junyoung Exp $ */
/* $NetBSD: aout.c,v 1.8 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -49,7 +49,7 @@
#else
#include <stand.h>
#include <lib/libsa/stand.h>
#include <atari_stand.h>
#include <string.h>
#include <libkern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: elf.c,v 1.5 2002/02/24 20:51:08 leo Exp $ */
/* $NetBSD: elf.c,v 1.6 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -48,7 +48,7 @@
#else
#include <stand.h>
#include <lib/libsa/stand.h>
#include <atari_stand.h>
#include <string.h>
#include <libkern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: sysinfo.c,v 1.4 2004/02/13 11:36:11 wiz Exp $ */
/* $NetBSD: sysinfo.c,v 1.5 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -41,7 +41,7 @@
#include <sys/types.h>
#else
#include <stand.h>
#include <lib/libsa/stand.h>
#include <atari_stand.h>
#include <string.h>
#include <libkern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: boot.c,v 1.14 2002/04/09 15:59:35 sakamoto Exp $ */
/* $NetBSD: boot.c,v 1.15 2005/06/28 21:03:02 junyoung Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -30,7 +30,8 @@
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stand.h>
#include <lib/libsa/stand.h>
#include <loadfile.h>
#include <sys/boot_flag.h>
#include <sys/reboot.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: clock.c,v 1.7 2004/06/29 16:21:16 kleink Exp $ */
/* $NetBSD: clock.c,v 1.8 2005/06/28 21:03:02 junyoung Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -31,7 +31,7 @@
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stand.h>
#include <lib/libsa/stand.h>
#include <sys/param.h>
#include <dev/isa/isareg.h>
#include <dev/ic/i8253reg.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: conf.c,v 1.4 2005/06/28 20:30:46 junyoung Exp $ */
/* $NetBSD: conf.c,v 1.5 2005/06/28 21:03:02 junyoung Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993
@ -32,7 +32,7 @@
*/
#include <sys/param.h>
#include <stand.h>
#include <lib/libsa/stand.h>
int fdstrategy(void *, int, daddr_t, size_t, void *, size_t *);
int fdopen(struct open_file *, ...);

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.c,v 1.4 2005/06/28 20:01:17 junyoung Exp $ */
/* $NetBSD: cpu.c,v 1.5 2005/06/28 21:03:02 junyoung Exp $ */
/*
* This file contains information proprietary to Be Inc.
@ -34,7 +34,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stand.h>
#include <lib/libsa/stand.h>
#include "boot.h"
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: devopen.c,v 1.5 2005/06/28 20:06:19 junyoung Exp $ */
/* $NetBSD: devopen.c,v 1.6 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1993 John Brezak
@ -28,7 +28,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <stand.h>
#include <lib/libsa/stand.h>
#include <lib/libkern/libkern.h>
#include <sys/param.h>
#include <sys/reboot.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: fd.c,v 1.5 2003/12/04 13:05:15 keihan Exp $ */
/* $NetBSD: fd.c,v 1.6 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (C) 1997-1998 Kazuki Sakamoto (sakamoto@NetBSD.org)
@ -33,7 +33,7 @@
*/
#include <sys/param.h>
#include <stand.h>
#include <lib/libsa/stand.h>
#include "boot.h"
/*---------------------------------------------------------------------------*

View File

@ -1,4 +1,4 @@
/* $NetBSD: filesystem.c,v 1.3 2005/06/23 19:44:00 junyoung Exp $ */
/* $NetBSD: filesystem.c,v 1.4 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@ -36,7 +36,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <stand.h>
#include <lib/libsa/stand.h>
#include <ufs.h>
#include <cd9660.h>
#if 0

View File

@ -1,4 +1,4 @@
/* $NetBSD: inkernel.c,v 1.4 2003/04/20 18:17:07 bjh21 Exp $ */
/* $NetBSD: inkernel.c,v 1.5 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@ -36,7 +36,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <stand.h>
#include <lib/libsa/stand.h>
#include <sys/param.h>
#include "boot.h"
#include "magic.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: io.c,v 1.3 1999/06/28 01:20:44 sakamoto Exp $ */
/* $NetBSD: io.c,v 1.4 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (C) 1995-1997 Gary Thomas (gdt@linuxppc.org)
@ -32,7 +32,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stand.h>
#include <lib/libsa/stand.h>
#include "boot.h"
volatile u_char *ISA_io = (u_char *)0x80000000;

View File

@ -1,4 +1,4 @@
/* $NetBSD: kbd.c,v 1.3 1999/06/28 01:20:44 sakamoto Exp $ */
/* $NetBSD: kbd.c,v 1.4 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (C) 1995-1997 Gary Thomas (gdt@linuxppc.org)
@ -31,7 +31,7 @@
*/
#if defined(CONS_BE) || defined(CONS_VGA)
#include <stand.h>
#include <lib/libsa/stand.h>
#include "boot.h"
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: monitor.c,v 1.4 2005/06/28 14:36:21 junyoung Exp $ */
/* $NetBSD: monitor.c,v 1.5 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@ -36,7 +36,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <stand.h>
#include <lib/libsa/stand.h>
extern int errno;
extern char *name;

View File

@ -1,4 +1,4 @@
/* $NetBSD: ns16550.c,v 1.5 1999/06/28 01:20:45 sakamoto Exp $ */
/* $NetBSD: ns16550.c,v 1.6 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (C) 1995-1997 Gary Thomas (gdt@linuxppc.org)
@ -35,7 +35,7 @@
* NS16550 support
*/
#include <stand.h>
#include <lib/libsa/stand.h>
#include "boot.h"
#include "ns16550.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: prf.c,v 1.3 1999/06/28 01:20:45 sakamoto Exp $ */
/* $NetBSD: prf.c,v 1.4 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@ -35,7 +35,8 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <stand.h>
#include <lib/libsa/stand.h>
#include "boot.h"
void

View File

@ -1,4 +1,4 @@
/* $NetBSD: tgets.c,v 1.4 2003/08/07 16:27:13 agc Exp $ */
/* $NetBSD: tgets.c,v 1.5 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1993
@ -31,7 +31,7 @@
* @(#)gets.c 8.1 (Berkeley) 6/11/93
*/
#include <stand.h>
#include <lib/libsa/stand.h>
#include "boot.h"
int

View File

@ -1,4 +1,4 @@
/* $NetBSD: vga.c,v 1.5 2005/06/28 14:38:06 junyoung Exp $ */
/* $NetBSD: vga.c,v 1.6 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (C) 1995-1997 Gary Thomas (gdt@linuxppc.org)
@ -33,7 +33,7 @@
*/
#ifdef CONS_VGA
#include <stand.h>
#include <lib/libsa/stand.h>
#include "boot.h"
#define COL 80

View File

@ -1,4 +1,4 @@
/* $NetBSD: video.c,v 1.5 2005/06/28 20:51:19 junyoung Exp $ */
/* $NetBSD: video.c,v 1.6 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (C) 1995-1997 Gary Thomas (gdt@linuxppc.org)
@ -31,7 +31,7 @@
*/
#ifdef CONS_BE
#include <stand.h>
#include <lib/libsa/stand.h>
#include "boot.h"
#include "iso_font.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: vreset.c,v 1.5 2005/06/27 11:52:28 junyoung Exp $ */
/* $NetBSD: vreset.c,v 1.6 2005/06/28 21:03:02 junyoung Exp $ */
/*
* Copyright (C) 1995-1997 Gary Thomas (gdt@linuxppc.org)
@ -41,7 +41,7 @@
*/
#ifdef CONS_VGA
#include <stand.h>
#include <lib/libsa/stand.h>
#include <machine/bswap.h>
#include "boot.h"
#include "iso_font.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: diskbuf.c,v 1.4 2004/03/24 16:46:27 drochner Exp $ */
/* $NetBSD: diskbuf.c,v 1.5 2005/06/28 21:00:41 junyoung Exp $ */
/*
* Copyright (c) 1996
@ -28,8 +28,8 @@
/* data buffer for BIOS disk / DOS I/O */
#include <lib/libsa/stand.h>
#include "diskbuf.h"
#include "stand.h"
char *diskbufp; /* allocated from heap */

View File

@ -1,4 +1,4 @@
/* $NetBSD: getopt.c,v 1.2 2003/08/07 16:28:04 agc Exp $ */
/* $NetBSD: getopt.c,v 1.3 2005/06/28 21:00:41 junyoung Exp $ */
/*
* Copyright (c) 1987, 1993, 1994
@ -32,7 +32,7 @@
/* from: netbsd:lib/libc/stdlib/getopt.c */
#include <lib/libkern/libkern.h>
#include "stand.h"
#include <lib/libsa/stand.h>
int opterr = 1, /* if error message should be printed */
optind = 1, /* index into parent argv vector */

View File

@ -1,4 +1,4 @@
/* $NetBSD: nfs.c,v 1.9 2005/06/27 11:34:30 junyoung Exp $ */
/* $NetBSD: nfs.c,v 1.10 2005/06/28 21:00:41 junyoung Exp $ */
/*-
* Copyright (c) 1993 John Brezak
@ -44,7 +44,7 @@
#include "rpcv2.h"
#include "nfsv2.h"
#include "stand.h"
#include <lib/libsa/stand.h>
#include "net.h"
#include "netif.h"
#include "nfs.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: conf.c,v 1.3 2005/06/23 19:44:01 junyoung Exp $ */
/* $NetBSD: conf.c,v 1.4 2005/06/28 21:00:41 junyoung Exp $ */
/*
* Copyright 2001 Wasabi Systems, Inc.
@ -39,7 +39,7 @@
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <stand.h>
#include <lib/libsa/stand.h>
#ifdef SUPPORT_NFS
#include <nfs.h>
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: devopen.c,v 1.5 2003/11/12 18:44:08 drochner Exp $ */
/* $NetBSD: devopen.c,v 1.6 2005/06/28 21:00:41 junyoung Exp $ */
/*
* Copyright 2001, 2002 Wasabi Systems, Inc.
@ -36,7 +36,7 @@
*/
#include <sys/param.h>
#include <stand.h>
#include <lib/libsa/stand.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <net.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: boot.c,v 1.4 2003/08/07 16:28:43 agc Exp $ */
/* $NetBSD: boot.c,v 1.5 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1982, 1986, 1990, 1993
@ -36,7 +36,7 @@
#include <machine/prom.h>
#include "stand.h"
#include <lib/libsa/stand.h>
#include "libsa.h"
int debug;

View File

@ -1,9 +1,9 @@
/* $NetBSD: conf.c,v 1.2 2005/06/23 19:44:01 junyoung Exp $ */
/* $NetBSD: conf.c,v 1.3 2005/06/28 21:03:02 junyoung Exp $ */
#include <sys/types.h>
#include <machine/prom.h>
#include <stand.h>
#include <lib/libsa/stand.h>
#include <ufs.h>
#include "libsa.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: boot.c,v 1.5 2003/08/07 16:28:44 agc Exp $ */
/* $NetBSD: boot.c,v 1.6 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1982, 1986, 1990, 1993
@ -36,7 +36,7 @@
#include <machine/prom.h>
#include "stand.h"
#include <lib/libsa/stand.h>
#include "libsa.h"
int debug;

View File

@ -1,6 +1,6 @@
/* $NetBSD: conf.c,v 1.2 2005/06/23 19:44:01 junyoung Exp $ */
/* $NetBSD: conf.c,v 1.3 2005/06/28 21:03:02 junyoung Exp $ */
#include <stand.h>
#include <lib/libsa/stand.h>
#include <rawfs.h>
#include <dev_tape.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: dev_tape.c,v 1.5 2001/07/07 09:06:43 scw Exp $ */
/* $NetBSD: dev_tape.c,v 1.6 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -48,7 +48,7 @@
#include <lib/libkern/libkern.h>
#include "stand.h"
#include <lib/libsa/stand.h>
#include "libsa.h"
#include "dev_tape.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: rawfs.c,v 1.5 2003/08/24 14:43:29 he Exp $ */
/* $NetBSD: rawfs.c,v 1.6 2005/06/28 21:03:02 junyoung Exp $ */
/*
* Copyright (c) 1995 Gordon W. Ross
@ -39,7 +39,7 @@
*/
#include <sys/param.h>
#include <stand.h>
#include <lib/libsa/stand.h>
#include <rawfs.h>
extern int debug;

View File

@ -1,4 +1,4 @@
/* $NetBSD: bootxx.c,v 1.10 2005/06/28 20:23:50 junyoung Exp $ */
/* $NetBSD: bootxx.c,v 1.11 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -52,7 +52,7 @@
#include <sys/exec_elf.h>
#include <machine/prom.h>
#include "stand.h"
#include <lib/libsa/stand.h>
#include "libsa.h"
#include "bootxx.h"

View File

@ -1,9 +1,9 @@
/* $NetBSD: conf.c,v 1.1 1996/05/17 20:11:33 chuck Exp $ */
/* $NetBSD: conf.c,v 1.2 2005/06/28 21:03:02 junyoung Exp $ */
#include <sys/types.h>
#include <machine/prom.h>
#include "stand.h"
#include <lib/libsa/stand.h>
#include "libsa.h"
struct devsw devsw[] = {

View File

@ -1,4 +1,4 @@
/* $NetBSD: inchr.c,v 1.1 1996/05/17 19:50:50 chuck Exp $ */
/* $NetBSD: inchr.c,v 1.2 2005/06/28 21:03:02 junyoung Exp $ */
/*
* bug routines -- assumes that the necessary sections of memory
@ -7,7 +7,7 @@
#include <sys/types.h>
#include <machine/prom.h>
#include "stand.h"
#include <lib/libsa/stand.h>
#include "libbug.h"
/* returns 0 if no characters ready to read */

View File

@ -1,4 +1,4 @@
/* $NetBSD: bugdev.c,v 1.7 2005/06/28 20:13:25 junyoung Exp $ */
/* $NetBSD: bugdev.c,v 1.8 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -40,7 +40,7 @@
#include <sys/disklabel.h>
#include <machine/prom.h>
#include "stand.h"
#include <lib/libsa/stand.h>
#include "libsa.h"
void cputobsdlabel(struct disklabel *lp, struct cpu_disklabel *clp);

View File

@ -1,10 +1,10 @@
/* $NetBSD: chiptotime.c,v 1.1 2000/07/24 18:39:44 jdolecek Exp $ */
/* $NetBSD: chiptotime.c,v 1.2 2005/06/28 21:03:02 junyoung Exp $ */
#include <sys/types.h>
#include <machine/prom.h>
#include "stand.h"
#include <lib/libsa/stand.h>
#include "libsa.h"
/*

View File

@ -1,9 +1,9 @@
/* $NetBSD: clock.c,v 1.5 2005/06/28 20:26:04 junyoung Exp $ */
/* $NetBSD: clock.c,v 1.6 2005/06/28 21:03:02 junyoung Exp $ */
#include <sys/types.h>
#include <machine/prom.h>
#include "stand.h"
#include <lib/libsa/stand.h>
#include "libsa.h"
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: exec_mvme.c,v 1.12 2003/08/07 16:28:45 agc Exp $ */
/* $NetBSD: exec_mvme.c,v 1.13 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1982, 1986, 1990, 1993
@ -37,7 +37,7 @@
#include "loadfile.h"
#include "stand.h"
#include <lib/libsa/stand.h>
#include "libsa.h"
/* These must agree with what locore.s expects */

View File

@ -1,4 +1,4 @@
/* $NetBSD: parse_args.c,v 1.9 2005/06/28 14:41:47 junyoung Exp $ */
/* $NetBSD: parse_args.c,v 1.10 2005/06/28 21:03:02 junyoung Exp $ */
/*-
* Copyright (c) 1995 Theo de Raadt
@ -32,7 +32,7 @@
#include <machine/prom.h>
#include <sys/boot_flag.h>
#include "stand.h"
#include <lib/libsa/stand.h>
#include "libsa.h"
#define KERNEL_NAME "netbsd"

View File

@ -1,4 +1,4 @@
/* $NetBSD: boot.c,v 1.13 2005/06/28 20:15:29 junyoung Exp $ */
/* $NetBSD: boot.c,v 1.14 2005/06/28 21:03:02 junyoung Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993
@ -37,7 +37,7 @@
#include <lib/libkern/libkern.h>
#include "stand.h"
#include <lib/libsa/stand.h>
#include "libsa.h"
#include "config.h"

View File

@ -1,10 +1,10 @@
/* $NetBSD: conf.c,v 1.4 2001/06/10 14:12:49 scw Exp $ */
/* $NetBSD: conf.c,v 1.5 2005/06/28 21:03:02 junyoung Exp $ */
#include <sys/types.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <stand.h>
#include <lib/libsa/stand.h>
#include <nfs.h>
#include <dev_net.h>