1129590Smarius/*-
2129590Smarius * Copyright (c) 2004 Marius Strobl
3129590Smarius * All rights reserved.
4129590Smarius *
5129590Smarius * Redistribution and use in source and binary forms, with or without
6129590Smarius * modification, are permitted provided that the following conditions
7129590Smarius * are met:
8129590Smarius * 1. Redistributions of source code must retain the above copyright
9129590Smarius *    notice, this list of conditions and the following disclaimer.
10129590Smarius * 2. Redistributions in binary form must reproduce the above copyright
11129590Smarius *    notice, this list of conditions and the following disclaimer in the
12129590Smarius *    documentation and/or other materials provided with the distribution.
13129590Smarius *
14129590Smarius * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15129590Smarius * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16129590Smarius * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17129590Smarius * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
18129590Smarius * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19129590Smarius * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
20129590Smarius * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
21129590Smarius * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
22129590Smarius * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
23129590Smarius * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24129590Smarius *
25129590Smarius * $FreeBSD$
26129590Smarius */
27129590Smarius
28129590Smarius#ifndef OFW_OPTIONS_H
29129590Smarius#define	OFW_OPTIONS_H
30129590Smarius
31129590Smariusvoid	ofwo_dump(void);
32129590Smariusint	ofwo_action(const char *prop, const char *val);
33129590Smarius
34129590Smarius#endif /* OFW_OPTIONS_H */
35