comparison liboctave/lo-mappers.cc @ 11525:ab231f944252

avoid exposing gnulib:: in header files
author John W. Eaton <jwe@octave.org>
date Fri, 14 Jan 2011 06:20:06 -0500
parents fd0a3ac60b0e
children 12df7854fa7c
comparison
equal deleted inserted replaced
11524:bd6e37860be5 11525:ab231f944252
46 xtrunc (double x) 46 xtrunc (double x)
47 { 47 {
48 return gnulib::trunc (x); 48 return gnulib::trunc (x);
49 } 49 }
50 50
51 double xfloor (double x)
52 {
53 return gnulib::floor (x);
54 }
55
51 double 56 double
52 xround (double x) 57 xround (double x)
53 { 58 {
54 return gnulib::round (x); 59 return gnulib::round (x);
55 } 60 }