Reformat comments. (messed up by "indent")

This commit is contained in:
drochner 1997-06-13 13:36:04 +00:00
parent ec191bc613
commit d55d9adc84
5 changed files with 27 additions and 19 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: biosdisk.c,v 1.3 1997/03/22 01:41:34 thorpej Exp $ */
/* $NetBSD: biosdisk.c,v 1.4 1997/06/13 13:36:04 drochner Exp $ */
/*
* Copyright (c) 1996
@ -33,9 +33,10 @@
*/
/*
* raw BIOS disk device for libsa. needs lowlevel parts from bios_disk.S and
* biosdisk_ll.c partly from netbsd:sys/arch/i386/boot/disk.c no bad144
* handling!
* raw BIOS disk device for libsa.
* needs lowlevel parts from bios_disk.S and biosdisk_ll.c
* partly from netbsd:sys/arch/i386/boot/disk.c
* no bad144 handling!
*/
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: biosdisk_ll.c,v 1.2 1997/03/22 01:41:36 thorpej Exp $ */
/* $NetBSD: biosdisk_ll.c,v 1.3 1997/06/13 13:36:06 drochner Exp $ */
/*
* Copyright (c) 1996
@ -36,8 +36,8 @@
*/
/*
* shared by bootsector startup (bootsectmain) and biosdisk.c needs lowlevel
* parts from bios_disk.S
* shared by bootsector startup (bootsectmain) and biosdisk.c
* needs lowlevel parts from bios_disk.S
*/
#include <lib/libsa/stand.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: dosfile.c,v 1.2 1997/03/22 01:48:31 thorpej Exp $ */
/* $NetBSD: dosfile.c,v 1.3 1997/06/13 13:36:08 drochner Exp $ */
/*
* Copyright (c) 1996
@ -33,8 +33,9 @@
*/
/*
* DOS filesystem for libsa standalone - uses no device, works only with DOS
* running needs lowlevel parts from dos_file.S
* DOS filesystem for libsa
* standalone - uses no device, works only with DOS running
* needs lowlevel parts from dos_file.S
*/
#include <lib/libsa/stand.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: nfswrapper.c,v 1.2 1997/03/22 09:13:50 thorpej Exp $ */
/* $NetBSD: nfswrapper.c,v 1.3 1997/06/13 13:36:10 drochner Exp $ */
/*
* Copyright (c) 1996
@ -33,9 +33,11 @@
/*
* Makes the (filesystem dependant) mount part of open. Necessary for
* interoperation with tftp filesystem on same net device layer. Assumes: -
* socket descriptor (int) at open_file->f_devdata - server host IP in global
* rootip - path to mount in globel rootpath
* interoperation with tftp filesystem on same net device layer.
* Assumes:
* - socket descriptor (int) at open_file->f_devdata
* - server host IP in global rootip
* - path to mount in globel rootpath
*/
#include <sys/param.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: tftp.c,v 1.2 1997/03/22 09:13:51 thorpej Exp $ */
/* $NetBSD: tftp.c,v 1.3 1997/06/13 13:36:12 drochner Exp $ */
/*
* Copyright (c) 1996
@ -33,10 +33,14 @@
*/
/*
* Simple TFTP implementation for libsa. Assumes: - socket descriptor (int)
* at open_file->f_devdata - server host IP in global rootip Restrictions: -
* read only - lseek only with SEEK_SET or SEEK_CUR - no big time differences
* between transfers (<tftp timeout)
* Simple TFTP implementation for libsa.
* Assumes:
* - socket descriptor (int) at open_file->f_devdata
* - server host IP in global rootip
* Restrictions:
* - read only
* - lseek only with SEEK_SET or SEEK_CUR
* - no big time differences between transfers (<tftp timeout)
*/
#include <sys/types.h>