/* * This file is part of the Vars library, copyright (C) Glenn Hutchings * 1996-2006. * * The Vars library comes with ABSOLUTELY NO WARRANTY. This is free * software, and you are welcome to redistribute it under certain * conditions; see the file COPYING for details. */ /* Configuration functions */ #include #include "vars-config.h" /* Replacement for missing drem() */ double v_drem(double x, double y) { return x - y * round(x / y); }