1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: include <cstdlib> to prevent FTBFS with GCC 4.3
based on patch from Martin Michlmayr <tbm@cyrius.com>
Author: Y Giridhar Appaji Nag <giridhar@appaji.net>
--- a/src/resources.inline.h
+++ b/src/resources.inline.h
@@ -20,6 +20,8 @@
*
******************************************************************************/
+#include <cstdlib>
+
/*==============================================================================
* EXTERNAL DECLARATIONS
*============================================================================*/
|