aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYichun Zhang (agentzh) <agentzh@gmail.com>2015-11-01 20:44:04 +0800
committerYichun Zhang (agentzh) <agentzh@gmail.com>2015-11-01 20:44:04 +0800
commit27abfdefedc8f7c161e440114b75d2f52425621b (patch)
treec96ffa1a996000bf45fc4fa23d57881c4f480a38
parente2762067f91a2cce61553f361d7ff4040b9f55bc (diff)
downloadlua-cjson-27abfdefedc8f7c161e440114b75d2f52425621b.tar.gz
lua-cjson-27abfdefedc8f7c161e440114b75d2f52425621b.tar.bz2
lua-cjson-27abfdefedc8f7c161e440114b75d2f52425621b.zip
fixed the warning "inline function ‘fpconv_init’ declared but never defined" from gcc.2.1.0.3rc2
-rw-r--r--fpconv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpconv.h b/fpconv.h
index 0124908..7b0d0ee 100644
--- a/fpconv.h
+++ b/fpconv.h
@@ -12,7 +12,7 @@ static inline void fpconv_init()
12 /* Do nothing - not required */ 12 /* Do nothing - not required */
13} 13}
14#else 14#else
15extern inline void fpconv_init(); 15extern void fpconv_init();
16#endif 16#endif
17 17
18extern int fpconv_g_fmt(char*, double, int); 18extern int fpconv_g_fmt(char*, double, int);