Deleted Added
full compact
msgcat.c (101727) msgcat.c (106053)
1/***********************************************************
2Copyright 1990, by Alfalfa Software Incorporated, Cambridge, Massachusetts.
3
4 All Rights Reserved
5
6Permission to use, copy, modify, and distribute this software and its
7documentation for any purpose and without fee is hereby granted,
8provided that the above copyright notice appear in all copies and that

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

26 Alfalfa Software, Inc.
27 267 Allston St., #3
28 Cambridge, MA 02139 USA
29 nazgul@alfalfa.com
30
31******************************************************************/
32
33#include <sys/cdefs.h>
1/***********************************************************
2Copyright 1990, by Alfalfa Software Incorporated, Cambridge, Massachusetts.
3
4 All Rights Reserved
5
6Permission to use, copy, modify, and distribute this software and its
7documentation for any purpose and without fee is hereby granted,
8provided that the above copyright notice appear in all copies and that

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

26 Alfalfa Software, Inc.
27 267 Allston St., #3
28 Cambridge, MA 02139 USA
29 nazgul@alfalfa.com
30
31******************************************************************/
32
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: head/lib/libc/nls/msgcat.c 101727 2002-08-12 11:47:19Z ache $");
34__FBSDID("$FreeBSD: head/lib/libc/nls/msgcat.c 106053 2002-10-27 17:44:33Z wollman $");
35
36/*
37 * We need a better way of handling errors than printing text. I need
38 * to add an error handling routine.
39 */
40
41#include "namespace.h"
42#include <sys/types.h>
43#include <sys/stat.h>
35
36/*
37 * We need a better way of handling errors than printing text. I need
38 * to add an error handling routine.
39 */
40
41#include "namespace.h"
42#include <sys/types.h>
43#include <sys/stat.h>
44#include <sys/syslimits.h>
44
45#include <errno.h>
46#include <fcntl.h>
45#include <errno.h>
46#include <fcntl.h>
47#include <limits.h>
47#include <locale.h>
48#include <nl_types.h>
49#include <stdio.h>
50#include <stdlib.h>
51#include <string.h>
52#include <unistd.h>
53#include "un-namespace.h"
54

--- 448 unchanged lines hidden ---
48#include <locale.h>
49#include <nl_types.h>
50#include <stdio.h>
51#include <stdlib.h>
52#include <string.h>
53#include <unistd.h>
54#include "un-namespace.h"
55

--- 448 unchanged lines hidden ---