1*46445Storek /* 2*46445Storek * Copyright (c) 1991 The Regents of the University of California. 3*46445Storek * All rights reserved. 4*46445Storek * 5*46445Storek * %sccs.include.redist.c% 6*46445Storek */ 7*46445Storek 8*46445Storek #if defined(LIBC_SCCS) && !defined(lint) 9*46445Storek static char sccsid[] = "@(#)localeconv.c 5.1 (Berkeley) 02/18/91"; 10*46445Storek #endif /* LIBC_SCCS and not lint */ 11*46445Storek 12*46445Storek #include <locale.h> 13*46445Storek 14*46445Storek /* 15*46445Storek * Return the current locale conversion. 16*46445Storek */ 17*46445Storek struct lconv * 18*46445Storek localeconv() 19*46445Storek { 20*46445Storek extern struct lconv *__lconv; 21*46445Storek 22*46445Storek return (__lconv); 23*46445Storek } 24