From owner-cvs-sys Sun Apr 23 02:37:09 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id CAA19089 for cvs-sys-outgoing; Sun, 23 Apr 1995 02:37:09 -0700 Received: (from bde@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id CAA19078 ; Sun, 23 Apr 1995 02:37:01 -0700 Date: Sun, 23 Apr 1995 02:37:01 -0700 From: Bruce Evans Message-Id: <199504230937.CAA19078@freefall.cdrom.com> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/sys conf.h Sender: cvs-sys-owner@freebsd.org Precedence: bulk bde 95/04/23 02:37:00 Modified: sys/sys conf.h Log: Declare d_dump_t and d_mmap_t completely. Nothing depends on the incomplete declarations here any more. Some things depend on incomplete declarations elsewhere. The `offset' arg to d_mmap_t is bogus (it is `int' but should be `vm_offset_t') but it is what the driver mmap functions actually accept, although they are passed a `vm_offset_t'. Function declararions in headers should always be complete to avoid warnings from `gcc -Wstrict-prototypes' for compiling modules that don't even use the offending declarations.