shithub: scc

Download patch

ref: fb0ceb96ef0cc6fe99222641944d2c479034d2d2
parent: 5689ef4e729aed4438f8c5c6a6626e3ea1df0073
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Thu Feb 23 11:39:59 EST 2017

[libc] Add extern keyword in locale.h

It is only a question of style.

--- a/libc/include/locale.h
+++ b/libc/include/locale.h
@@ -37,7 +37,7 @@
 	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