Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r80249 - trunk/tools/build/v2/engine
From: jurko.gospodnetic_at_[hidden]
Date: 2012-08-27 05:52:46


Author: jurko
Date: 2012-08-27 05:52:45 EDT (Mon, 27 Aug 2012)
New Revision: 80249
URL: http://svn.boost.org/trac/boost/changeset/80249

Log:
Added two missing header includes in Boost Jam's class.c module. Should fix warnings displayed when building using the mingw64 toolset about printf() and abort() functions having 'invalid implicit declarations'.
Text files modified:
   trunk/tools/build/v2/engine/class.c | 3 +++
   1 files changed, 3 insertions(+), 0 deletions(-)

Modified: trunk/tools/build/v2/engine/class.c
==============================================================================
--- trunk/tools/build/v2/engine/class.c (original)
+++ trunk/tools/build/v2/engine/class.c 2012-08-27 05:52:45 EDT (Mon, 27 Aug 2012)
@@ -16,6 +16,9 @@
 #include "strings.h"
 #include "variable.h"
 
+#include <stdio.h>
+#include <stdlib.h>
+
 
 static struct hash * classes = 0;
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk