commit eb84713444cd3dafa53eaa764fb49462531f511e parent 23dd58a0a616e7695b58073349762e104cf604c2 Author: Roberto E. Vargas Caballero <k0ga@shike2.com> Date: Thu, 23 Feb 2017 16:39:59 +0100 [libc] Add extern keyword in locale.h It is only a question of style. Diffstat:
M | libc/include/locale.h | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libc/include/locale.h b/libc/include/locale.h @@ -37,7 +37,7 @@ struct lconv { char int_n_sign_posn; }; -char *setlocale(int category, const char *locale); -struct lconv *localeconv(void); +extern char *setlocale(int category, const char *locale); +extern struct lconv *localeconv(void); #endif