Files
rds95/src/common.h
T

15 lines
297 B
C

/* common includes for rds95 */
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <math.h>
#include <stdbool.h>
/* workaround for missing pi definition */
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
#define M_2PI (M_PI * 2.0)