bpmnr/dround.c

Go to the documentation of this file.
00001 
00006 double dround( double x ) {
00007   if( ( x - (int) x ) >= 0.5 ) return (double) ( (int) x + 1. );
00008   return (double) ( (int) x );
00009 }

Generated on Thu Jan 10 10:18:04 2008 for libbpm by  doxygen 1.5.1