X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=functions%2Flocale%2Flocaleconv.c;h=5b49571ec5ae86f26f37c54548fce0c7da088757;hp=e23fb6a3585d7f6f21398aa18a077d7f7a0dc267;hb=ed01ab8d9fcc47f6a4089ef72a73ef7a084d1ed3;hpb=fd89f130aedf49fbdb3e4f5a24c9cedb56eea22e 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