kenv.h revision 94936
1163598Simp/*-
2163598Simp * Copyright (c) 2002 Maxime Henrion <mux@FreeBSD.org>
3163598Simp * All rights reserved.
4163598Simp *
5163598Simp * Redistribution and use in source and binary forms, with or without
6163598Simp * modification, are permitted provided that the following conditions
7163598Simp * are met:
8163598Simp * 1. Redistributions of source code must retain the above copyright
9163598Simp *    notice, this list of conditions and the following disclaimer.
10163598Simp * 2. Redistributions in binary form must reproduce the above copyright
11163598Simp *    notice, this list of conditions and the following disclaimer in the
12163598Simp *    documentation and/or other materials provided with the distribution.
13163598Simp *
14163598Simp * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15163598Simp * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16163598Simp * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17163598Simp * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18163598Simp * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19163598Simp * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20163598Simp * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21163598Simp * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22163598Simp * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23163598Simp * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24163598Simp * SUCH DAMAGE.
25163598Simp *
26163598Simp * $FreeBSD: head/include/kenv.h 94936 2002-04-17 13:06:36Z mux $
27163598Simp */
28163598Simp
29163598Simp#ifndef _KENV_H_
30163598Simp#define _KENV_H_
31163598Simp
32163598Simp#include <sys/cdefs.h>
33163598Simp#include <sys/kenv.h>
34163598Simp
35163598Simp__BEGIN_DECLS
36163598Simpint kenv(int, char *, char *, int);
37163598Simp__END_DECLS
38163598Simp
39163598Simp#endif /* !_KENV_H_ */
40163598Simp