Author: asomers Date: Tue Jul 2 14:48:39 2013 New Revision: 252508 URL: http://svnweb.freebsd.org/changeset/base/252508
Log: Explicitly include <cstdarg> to fix compilation with libc++. It is implicitly included by libstdc++. Reported By: Oliver Hartmann Approved by: gibbs (co-mentor, implicit) Modified: head/sbin/devd/devd.cc Modified: head/sbin/devd/devd.cc ============================================================================== --- head/sbin/devd/devd.cc Tue Jul 2 13:48:16 2013 (r252507) +++ head/sbin/devd/devd.cc Tue Jul 2 14:48:39 2013 (r252508) @@ -79,6 +79,7 @@ __FBSDID("$FreeBSD$"); #include <cstdio> #include <csignal> #include <cstring> +#include <cstdarg> #include <dirent.h> #include <err.h> _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"