diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-06-27 01:13:21 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-06-27 01:13:21 +0900 |
| commit | 6410cdf3bffcbbb3d97f0153720922242c4f800f (patch) | |
| tree | 7c5826fd2a92291a6dee1ee6ad99cbd4872eced9 /src/sprintf.c | |
| parent | 42e1f0cdb73fc5277375349e1149a1e8083e1bf8 (diff) | |
| download | mruby-6410cdf3bffcbbb3d97f0153720922242c4f800f.tar.gz mruby-6410cdf3bffcbbb3d97f0153720922242c4f800f.zip | |
do not undef config macros
Diffstat (limited to 'src/sprintf.c')
| -rw-r--r-- | src/sprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sprintf.c b/src/sprintf.c index 86c3b66bc..68addef89 100644 --- a/src/sprintf.c +++ b/src/sprintf.c @@ -6,7 +6,7 @@ #include "mruby.h" -#ifdef ENABLE_KERNEL_SPRINTF +#ifdef ENABLE_SPRINTF #include <stdio.h> #include <string.h> @@ -1084,4 +1084,4 @@ fmt_setup(char *buf, size_t size, int c, int flags, int width, int prec) *buf = '\0'; } -#endif /* ENABLE_KERNEL_SPRINTF */ +#endif /* ENABLE_SPRINTF */ |
