blob: 4166694806b2536f67bf72b6c320f1feb90080e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef _WIN32
#define HAVE_FOPEN_S
#define HAVE_WGL
#endif
#ifndef HAVE_STRTOF
#define strtof(_a, _b) ((float) strtod(_a, _b))
#endif
|