atf-c.h revision 260029
1132943Sgshapiro/*
2132943Sgshapiro * Automated Testing Framework (atf)
3132943Sgshapiro *
4132943Sgshapiro * Copyright (c) 2008 The NetBSD Foundation, Inc.
5132943Sgshapiro * All rights reserved.
6132943Sgshapiro *
7132943Sgshapiro * Redistribution and use in source and binary forms, with or without
8132943Sgshapiro * modification, are permitted provided that the following conditions
9132943Sgshapiro * are met:
10132943Sgshapiro * 1. Redistributions of source code must retain the above copyright
11132943Sgshapiro *    notice, this list of conditions and the following disclaimer.
12132943Sgshapiro * 2. Redistributions in binary form must reproduce the above copyright
13132943Sgshapiro *    notice, this list of conditions and the following disclaimer in the
14132943Sgshapiro *    documentation and/or other materials provided with the distribution.
15132943Sgshapiro *
16132943Sgshapiro * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
17132943Sgshapiro * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18132943Sgshapiro * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19132943Sgshapiro * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20132943Sgshapiro * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
21132943Sgshapiro * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22132943Sgshapiro * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23132943Sgshapiro * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24132943Sgshapiro * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25132943Sgshapiro * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26132943Sgshapiro * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27132943Sgshapiro * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28132943Sgshapiro */
29132943Sgshapiro
30132943Sgshapiro#if !defined(ATF_C_H)
31132943Sgshapiro#define ATF_C_H
32132943Sgshapiro
33132943Sgshapiro#include <atf-c/error.h>
34132943Sgshapiro#include <atf-c/macros.h>
35132943Sgshapiro#include <atf-c/utils.h>
36132943Sgshapiro
37#endif /* !defined(ATF_C_H) */
38