Deleted Added
full compact
sysctl.c (88696) sysctl.c (91217)
1/*
2 * Copyright (c) 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

37 The Regents of the University of California. All rights reserved.\n";
38#endif /* not lint */
39
40#ifndef lint
41#if 0
42static char sccsid[] = "@(#)from: sysctl.c 8.1 (Berkeley) 6/6/93";
43#endif
44static const char rcsid[] =
1/*
2 * Copyright (c) 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

37 The Regents of the University of California. All rights reserved.\n";
38#endif /* not lint */
39
40#ifndef lint
41#if 0
42static char sccsid[] = "@(#)from: sysctl.c 8.1 (Berkeley) 6/6/93";
43#endif
44static const char rcsid[] =
45 "$FreeBSD: head/sbin/sysctl/sysctl.c 88696 2001-12-30 10:33:34Z phk $";
45 "$FreeBSD: head/sbin/sysctl/sysctl.c 91217 2002-02-25 03:36:06Z bde $";
46#endif /* not lint */
47
46#endif /* not lint */
47
48#include <sys/types.h>
48#include <sys/param.h>
49#include <sys/time.h>
50#include <sys/resource.h>
49#include <sys/stat.h>
50#include <sys/sysctl.h>
51#include <sys/stat.h>
52#include <sys/sysctl.h>
51#include <sys/resource.h>
52#include <sys/param.h>
53
54#include <ctype.h>
55#include <err.h>
56#include <errno.h>
57#include <stdio.h>
58#include <stdlib.h>
59#include <string.h>
60#include <unistd.h>

--- 534 unchanged lines hidden ---
53
54#include <ctype.h>
55#include <err.h>
56#include <errno.h>
57#include <stdio.h>
58#include <stdlib.h>
59#include <string.h>
60#include <unistd.h>

--- 534 unchanged lines hidden ---