mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-07 05:21:55 +00:00
18 lines
295 B
C
18 lines
295 B
C
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
#include <assert.h>
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <gsl/gsl_errno.h>
|
|
#include <gsl/gsl_matrix.h>
|
|
#include <gsl/gsl_odeiv2.h>
|
|
#include <gsl/gsl_sf_bessel.h>
|
|
#include <gsl/gsl_statistics.h>
|
|
|
|
#include <plplot/plplot.h>
|
|
|
|
#endif
|