From edcbb2ecce1455995c5990fb5f39d14881b809fa Mon Sep 17 00:00:00 2001 From: Manuel Novoa III Date: Sun, 14 Dec 2003 19:10:23 +0000 Subject: Fix a couple of 'declaration after statement' errors. --- libc/misc/locale/locale.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libc/misc') diff --git a/libc/misc/locale/locale.c b/libc/misc/locale/locale.c index 1e79204c0..cf058ce3e 100644 --- a/libc/misc/locale/locale.c +++ b/libc/misc/locale/locale.c @@ -1378,9 +1378,8 @@ __locale_t weak_const_function __curlocale(void) __locale_t weak_function __curlocale_set(__locale_t newloc) { - assert(newloc != LC_GLOBAL_LOCALE); - __locale_t oldloc = __curlocale_var; + assert(newloc != LC_GLOBAL_LOCALE); __curlocale_var = newloc; return oldloc; } -- cgit v1.2.3