Deleted Added
full compact
kvm.h (43282) kvm.h (45513)
1/*-
2 * Copyright (c) 1989, 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

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)kvm.h 8.1 (Berkeley) 6/2/93
1/*-
2 * Copyright (c) 1989, 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

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)kvm.h 8.1 (Berkeley) 6/2/93
34 * $Id: kvm.h,v 1.7 1999/01/23 04:58:35 dillon Exp $
34 * $Id: kvm.h,v 1.8 1999/01/27 11:29:15 bde Exp $
35 */
36
37#ifndef _KVM_H_
38#define _KVM_H_
39
35 */
36
37#ifndef _KVM_H_
38#define _KVM_H_
39
40#include <sys/cdefs.h>
41#include <machine/ansi.h>
42#include <nlist.h>
43
40/* Default version symbol. */
41#define VRS_SYM "_version"
42#define VRS_KEY "VERSION"
43
44/* Default version symbol. */
45#define VRS_SYM "_version"
46#define VRS_KEY "VERSION"
47
44#include <nlist.h>
45#include <sys/cdefs.h>
46
47#ifdef _BSD_SIZE_T_
48typedef _BSD_SIZE_T_ size_t;
49#undef _BSD_SIZE_T_
50#endif
51
52#ifdef _BSD_SSIZE_T_
53typedef _BSD_SSIZE_T_ ssize_t;
54#undef _BSD_SSIZE_T_

--- 41 unchanged lines hidden ---
48#ifdef _BSD_SIZE_T_
49typedef _BSD_SIZE_T_ size_t;
50#undef _BSD_SIZE_T_
51#endif
52
53#ifdef _BSD_SSIZE_T_
54typedef _BSD_SSIZE_T_ ssize_t;
55#undef _BSD_SSIZE_T_

--- 41 unchanged lines hidden ---