Commit c9b1338b authored by Mark Friedrichs's avatar Mark Friedrichs
Browse files

Added #include <cstdio>' to fix problem w/ stderr not being found w/ gcc 4.4

parent 354f7b67
......@@ -50,6 +50,7 @@
#include "CudaFreeEnergyKernelFactory.h"
#include <iostream>
#include <cstdio>
#include <vector>
using namespace OpenMM;
......@@ -370,7 +371,9 @@ void testEnergyEthaneSwitchingFunction( int useSwitchingFunction ) {
// positions[8][2] -= static_cast<double>(ii+1)*0.1;
// positions[8][2] -= 0.001;
#if PRINT_ON == 1
(void) fprintf( stderr, "r48=%14.6e r28=%14.6e r24=%14.6e\n", positions[8][2]-positions[4][2], positions[8][2], positions[4][2] );
#endif
}
#if 0
int carbonIndex = 1;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment