From: deraadt Date: Thu, 2 May 1996 13:13:21 +0000 (+0000) Subject: dk_establish() is actually supposed to be void X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=894d6602d8e56209ff13b0075aa60e65eaa01769;p=openbsd dk_establish() is actually supposed to be void --- diff --git a/sys/sys/disk.h b/sys/sys/disk.h index fab4a55152f..1fc3da62527 100644 --- a/sys/sys/disk.h +++ b/sys/sys/disk.h @@ -1,5 +1,5 @@ -/* $OpenBSD: disk.h,v 1.3 1996/03/03 12:11:33 niklas Exp $ */ -/* $NetBSD: disk.h,v 1.9 1996/01/07 22:04:07 thorpej Exp $ */ +/* $OpenBSD: disk.h,v 1.4 1996/05/02 13:13:21 deraadt Exp $ */ +/* $NetBSD: disk.h,v 1.11 1996/04/28 20:22:50 thorpej Exp $ */ /* * Copyright (c) 1995 Jason R. Thorpe. All rights reserved. @@ -144,4 +144,7 @@ void disk_busy __P((struct disk *)); void disk_unbusy __P((struct disk *, long)); void disk_resetstat __P((struct disk *)); struct disk *disk_find __P((char *)); + +struct device; +void dk_establish __P((struct disk *, struct device *)); #endif