Date: Fri, 16 Jun 2006 20:25:28 GMT From: Robert Watson <rwatson@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 99367 for review Message-ID: <200606162025.k5GKPSHe033915@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=99367 Change 99367 by rwatson@rwatson_peppercorn on 2006/06/16 20:24:42 Nested include sys/time.h since it is required, rathe than forward declare -- the arguments aren't struct timeval *, they're plain struct timeval. Affected files ... .. //depot/projects/trustedbsd/openbsm/bsm/audit_record.h#19 edit Differences ... ==== //depot/projects/trustedbsd/openbsm/bsm/audit_record.h#19 (text+ko) ==== @@ -30,12 +30,14 @@ * * @APPLE_BSD_LICENSE_HEADER_END@ * - * $P4: //depot/projects/trustedbsd/openbsm/bsm/audit_record.h#18 $ + * $P4: //depot/projects/trustedbsd/openbsm/bsm/audit_record.h#19 $ */ #ifndef _BSM_AUDIT_RECORD_H_ #define _BSM_AUDIT_RECORD_H_ +#include <sys/time.h> /* struct timeval */ + /* * Token type identifiers. */ @@ -220,7 +222,6 @@ struct sockaddr_in; struct sockaddr_in6; struct sockaddr_un; -struct timeval; #if defined(_KERNEL) || defined(KERNEL) struct vnode_au_info; #endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200606162025.k5GKPSHe033915>