error_fwd.h revision 285830
1251881Speter/* Copyright (c) 2008 The NetBSD Foundation, Inc.
2251881Speter * All rights reserved.
3251881Speter *
4251881Speter * Redistribution and use in source and binary forms, with or without
5251881Speter * modification, are permitted provided that the following conditions
6251881Speter * are met:
7251881Speter * 1. Redistributions of source code must retain the above copyright
8251881Speter *    notice, this list of conditions and the following disclaimer.
9251881Speter * 2. Redistributions in binary form must reproduce the above copyright
10251881Speter *    notice, this list of conditions and the following disclaimer in the
11251881Speter *    documentation and/or other materials provided with the distribution.
12251881Speter *
13251881Speter * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
14251881Speter * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
15251881Speter * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
16251881Speter * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17251881Speter * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
18251881Speter * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19251881Speter * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
20251881Speter * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21251881Speter * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
22251881Speter * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
23251881Speter * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
24251881Speter * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  */
25251881Speter
26251881Speter#if !defined(ATF_C_ERROR_FWD_H)
27251881Speter#define ATF_C_ERROR_FWD_H
28251881Speter
29251881Speter/* ---------------------------------------------------------------------
30251881Speter * The "atf_error" type.
31251881Speter * --------------------------------------------------------------------- */
32251881Speter
33251881Speterstruct atf_error;
34251881Spetertypedef struct atf_error *atf_error_t;
35251881Speter
36251881Speter#endif /* !defined(ATF_C_ERROR_FWD_H) */
37251881Speter