mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-07-21 18:00:56 -05:00
Old structure: put everything in lib/include New structure: put library includes in their respective library folder. e.g. lib/NitroDWC/include/dwc.h
22 lines
328 B
C
22 lines
328 B
C
#ifndef NITRO_MATH_H_
|
|
#define NITRO_MATH_H_
|
|
|
|
#include <nitro/math/math.h>
|
|
#include <nitro/math/rand.h>
|
|
#include <nitro/math/qsort.h>
|
|
#include <nitro/math/fft.h>
|
|
|
|
#include <nitro/math/checksum.h>
|
|
#include <nitro/math/crc.h>
|
|
#include <nitro/math/dgt.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|