bcssocket/include/math.h

12 lines
180 B
C

#ifndef MATH_H
#define MATH_H
#include <stdint.h>
#include <math.h>
#define M_PI 3.14159265358979323846
double getUniform(uint32_t max);
void boxMuller(double * normal);
#endif