Date: Fri, 7 Aug 2020 16:04:06 +0000 (UTC) From: Alex Richardson <arichardson@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r364024 - head/usr.sbin/makefs/msdos Message-ID: <202008071604.077G46TT026015@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: arichardson Date: Fri Aug 7 16:04:06 2020 New Revision: 364024 URL: https://svnweb.freebsd.org/changeset/base/364024 Log: makefs: Drop unnecessary sys/clock.h include This breaks the build on macOS where this header doesn't exist. I could also add a compat header to tools/build/cross-build but since it's not needed removing it seems like the better solution. Modified: head/usr.sbin/makefs/msdos/msdosfs_vnops.c Modified: head/usr.sbin/makefs/msdos/msdosfs_vnops.c ============================================================================== --- head/usr.sbin/makefs/msdos/msdosfs_vnops.c Fri Aug 7 16:04:01 2020 (r364023) +++ head/usr.sbin/makefs/msdos/msdosfs_vnops.c Fri Aug 7 16:04:06 2020 (r364024) @@ -53,7 +53,6 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> -#include <sys/clock.h> #include <sys/errno.h> #include <sys/mman.h> #include <sys/time.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008071604.077G46TT026015>