194936Smux/*-
294936Smux * Copyright (c) 2002 Maxime Henrion <mux@FreeBSD.org>
394936Smux * All rights reserved.
494936Smux *
594936Smux * Redistribution and use in source and binary forms, with or without
694936Smux * modification, are permitted provided that the following conditions
794936Smux * are met:
894936Smux * 1. Redistributions of source code must retain the above copyright
994936Smux *    notice, this list of conditions and the following disclaimer.
1094936Smux * 2. Redistributions in binary form must reproduce the above copyright
1194936Smux *    notice, this list of conditions and the following disclaimer in the
1294936Smux *    documentation and/or other materials provided with the distribution.
1394936Smux *
1494936Smux * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1594936Smux * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1694936Smux * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1794936Smux * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1894936Smux * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1994936Smux * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2094936Smux * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2194936Smux * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2294936Smux * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2394936Smux * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2494936Smux * SUCH DAMAGE.
2594936Smux *
2694936Smux * $FreeBSD$
2794936Smux */
2894936Smux
2994936Smux#ifndef _KENV_H_
3094936Smux#define _KENV_H_
3194936Smux
3294936Smux#include <sys/cdefs.h>
3394936Smux#include <sys/kenv.h>
3494936Smux
3594936Smux__BEGIN_DECLS
36152750Sruint kenv(int, const char *, char *, int);
3794936Smux__END_DECLS
3894936Smux
3994936Smux#endif /* !_KENV_H_ */
40