Deleted Added
full compact
sysconf.c (87161) sysconf.c (90039)
1/*-
2 * Copyright (c) 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Sean Eric Fagan of Cygnus Support.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#if defined(LIBC_SCCS) && !defined(lint)
38static char sccsid[] = "@(#)sysconf.c 8.2 (Berkeley) 3/20/94";
39#endif /* LIBC_SCCS and not lint */
1/*-
2 * Copyright (c) 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Sean Eric Fagan of Cygnus Support.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#if defined(LIBC_SCCS) && !defined(lint)
38static char sccsid[] = "@(#)sysconf.c 8.2 (Berkeley) 3/20/94";
39#endif /* LIBC_SCCS and not lint */
40#include <sys/cdefs.h>
41__FBSDID("$FreeBSD: head/lib/libc/gen/sysconf.c 90039 2002-02-01 00:57:29Z obrien $");
40
42
41#if defined(LIBC_RCS) && !defined(lint)
42static const char rcsid[] =
43 "$FreeBSD: head/lib/libc/gen/sysconf.c 87161 2001-12-01 12:07:42Z jkoshy $";
44#endif /* LIBC_RCS and not lint */
45
46#include <sys/_posix.h>
47#include <sys/param.h>
48#include <sys/time.h>
49#include <sys/sysctl.h>
50#include <sys/resource.h>
51
52#include <errno.h>
53#include <time.h>

--- 266 unchanged lines hidden ---
43#include <sys/_posix.h>
44#include <sys/param.h>
45#include <sys/time.h>
46#include <sys/sysctl.h>
47#include <sys/resource.h>
48
49#include <errno.h>
50#include <time.h>

--- 266 unchanged lines hidden ---