146445Storek /* 2*61136Sbostic * Copyright (c) 1991, 1993 3*61136Sbostic * The Regents of the University of California. All rights reserved. 446445Storek * 546445Storek * %sccs.include.redist.c% 646445Storek */ 746445Storek 846445Storek #if defined(LIBC_SCCS) && !defined(lint) 9*61136Sbostic static char sccsid[] = "@(#)localeconv.c 8.1 (Berkeley) 06/04/93"; 1046445Storek #endif /* LIBC_SCCS and not lint */ 1146445Storek 1246445Storek #include <locale.h> 1346445Storek 1446445Storek /* 1546445Storek * Return the current locale conversion. 1646445Storek */ 1746445Storek struct lconv * localeconv()1846445Storeklocaleconv() 1946445Storek { 2046445Storek extern struct lconv *__lconv; 2146445Storek 2246445Storek return (__lconv); 2346445Storek } 24