X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Flocale%2Flocaleconv.c;h=5da63d01f9d78eace0c067ce1c7c73c68c96497e;hb=b1db7bea4fcc15c30a3a1b34056690cc12971298;hp=e23fb6a3585d7f6f21398aa18a077d7f7a0dc267;hpb=37a19e428fd1e1b348e332fdc8ee759d13ebe88b;p=pdclib.old diff --git a/functions/locale/localeconv.c b/functions/locale/localeconv.c index e23fb6a..5da63d0 100644 --- a/functions/locale/localeconv.c +++ b/functions/locale/localeconv.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* localeconv( void ) This file is part of the Public Domain C Library (PDCLib). @@ -7,12 +5,12 @@ */ #include - #ifndef REGTEST +#include <_PDCLIB_locale.h> struct lconv * localeconv( void ) { - return &_PDCLIB_lconv; + return &_PDCLIB_threadlocale()->_Conv; } #endif