diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-05-20 15:02:03 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-05-20 15:02:03 +0900 |
| commit | 2e838250a458870cb725d4df58eeebb73bb34f24 (patch) | |
| tree | e831b37292d7b3a9868fa37994ce6178de327d9d /src | |
| parent | 505c6961dc5aa75783c43bb582379582cae0dbbb (diff) | |
| parent | 486870e353e1d06cb2592963c1a021231eec9c5b (diff) | |
| download | mruby-2e838250a458870cb725d4df58eeebb73bb34f24.tar.gz mruby-2e838250a458870cb725d4df58eeebb73bb34f24.zip | |
Merge pull request #2798 from iij/pr-netbsd
Fix build mruby for NetBSD
Diffstat (limited to 'src')
| -rw-r--r-- | src/fmt_fp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fmt_fp.c b/src/fmt_fp.c index 9aeae642c..ef2f19dd5 100644 --- a/src/fmt_fp.c +++ b/src/fmt_fp.c @@ -90,7 +90,7 @@ fmt_u(uint32_t x, char *s) typedef char compiler_defines_long_double_incorrectly[9-(int)sizeof(long double)]; #endif -#if defined(__CYGWIN32__) || defined(mips) +#if defined(__CYGWIN32__) || defined(__NetBSD__) || defined(mips) static long double frexpl (long double x, int *eptr) { |
