Deleted Added
full compact
localeconv.c (104711) localeconv.c (116875)
1/*
2 * Copyright (c) 2001 Alexey Zelkin <phantom@FreeBSD.org>
3 * Copyright (c) 1991, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 22 unchanged lines hidden (view full) ---

31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35#if defined(LIBC_SCCS) && !defined(lint)
36static char sccsid[] = "@(#)localeconv.c 8.1 (Berkeley) 6/4/93";
37#endif /* LIBC_SCCS and not lint */
38#include <sys/cdefs.h>
1/*
2 * Copyright (c) 2001 Alexey Zelkin <phantom@FreeBSD.org>
3 * Copyright (c) 1991, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 22 unchanged lines hidden (view full) ---

31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35#if defined(LIBC_SCCS) && !defined(lint)
36static char sccsid[] = "@(#)localeconv.c 8.1 (Berkeley) 6/4/93";
37#endif /* LIBC_SCCS and not lint */
38#include <sys/cdefs.h>
39__FBSDID("$FreeBSD: head/lib/libc/locale/localeconv.c 104711 2002-10-09 09:19:28Z tjr $");
39__FBSDID("$FreeBSD: head/lib/libc/locale/localeconv.c 116875 2003-06-26 10:46:16Z phantom $");
40
41#include <locale.h>
40
41#include <locale.h>
42
42#include "lmonetary.h"
43#include "lnumeric.h"
44
45/*
46 * The localeconv() function constructs a struct lconv from the current
47 * monetary and numeric locales.
48 *
49 * Because localeconv() may be called many times (especially by library

--- 62 unchanged lines hidden ---
43#include "lmonetary.h"
44#include "lnumeric.h"
45
46/*
47 * The localeconv() function constructs a struct lconv from the current
48 * monetary and numeric locales.
49 *
50 * Because localeconv() may be called many times (especially by library

--- 62 unchanged lines hidden ---