From 27abfdefedc8f7c161e440114b75d2f52425621b Mon Sep 17 00:00:00 2001 From: "Yichun Zhang (agentzh)" Date: Sun, 1 Nov 2015 20:44:04 +0800 Subject: fixed the warning "inline function ‘fpconv_init’ declared but never defined" from gcc. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fpconv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() /* Do nothing - not required */ } #else -extern inline void fpconv_init(); +extern void fpconv_init(); #endif extern int fpconv_g_fmt(char*, double, int); -- cgit v1.2.3-55-g6feb