#include <stdarg.h>
#include "lib.h"

/*
 * XXX this should probably be much smarter.
 */

int
rint(double d)
{
	return (int)d;
}

