mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-29 13:03:42 +01:00
b6ff8bbe91
I often build the code with -Wmissing-prototypes to ensure that we don't accidentically pollute the symbol namespace. If we want to provide a symbol such as isopenlibm(), make sure we also declare it in <openlibm_math.h>.
7 lines
104 B
C
7 lines
104 B
C
#include <openlibm_math.h>
|
|
|
|
#include "math_private.h"
|
|
|
|
DLLEXPORT int isopenlibm(void) {
|
|
return 1;
|
|
}
|