/* * Copyright (c) 1991 The Regents of the University of California. * All rights reserved. * * %sccs.include.redist.c% */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)localeconv.c 5.1 (Berkeley) 02/18/91"; #endif /* LIBC_SCCS and not lint */ #include /* * Return the current locale conversion. */ struct lconv * localeconv() { extern struct lconv *__lconv; return (__lconv); }