X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Flocale%2Flocaleconv.c;h=5b49571ec5ae86f26f37c54548fce0c7da088757;hb=d77b84be585e9ceaed1501579df5a4aec6a24a63;hp=e23fb6a3585d7f6f21398aa18a077d7f7a0dc267;hpb=11b11c83484dd89b1bb78db639f164616916ea0b;p=pdclib diff --git a/functions/locale/localeconv.c b/functions/locale/localeconv.c index e23fb6a..5b49571 100644 --- a/functions/locale/localeconv.c +++ b/functions/locale/localeconv.c @@ -1,18 +1,16 @@ -/* $Id$ */ - /* localeconv( void ) This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. */ -#include +#include <_PDCLIB_locale.h> #ifndef REGTEST struct lconv * localeconv( void ) { - return &_PDCLIB_lconv; + return &_PDCLIB_threadlocale()->_Conv; } #endif