#include "q_shared.h" #include "log.h" int Q_floor (float x); int Q_ceil (float x); int Q_trunc (float x); int Q_round (float x); float Q_exp (float x); float Q_log (float x); float Q_sin (float theta); float Q_cos (float theta); float Q_tan (float theta); float Q_atan2 (float x, float y); float Q_atan (float theta); float Q_asin (float theta); float Q_acos (float theta); float Q_sqrt (float x); float Q_hypot (float a, float b); float Q_rint (float x); /* Following added to support Ogg Vorbis. */ double atan (double x); double log (double x); float hypot (float x, float y); double rint (double x); long int labs (long int x); double ldexp (double x, int y);