Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Jul 2013 14:48:39 +0000 (UTC)
From:      Alan Somers <asomers@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r252508 - head/sbin/devd
Message-ID:  <201307021448.r62Emd0n069682@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307021448.r62Emd0n069682>