1240122Smarcel/*
2240122Smarcel * Automated Testing Framework (atf)
3240122Smarcel *
4240122Smarcel * Copyright (c) 2008 The NetBSD Foundation, Inc.
5240122Smarcel * All rights reserved.
6240122Smarcel *
7240122Smarcel * Redistribution and use in source and binary forms, with or without
8240122Smarcel * modification, are permitted provided that the following conditions
9240122Smarcel * are met:
10240122Smarcel * 1. Redistributions of source code must retain the above copyright
11240122Smarcel *    notice, this list of conditions and the following disclaimer.
12240122Smarcel * 2. Redistributions in binary form must reproduce the above copyright
13240122Smarcel *    notice, this list of conditions and the following disclaimer in the
14240122Smarcel *    documentation and/or other materials provided with the distribution.
15240122Smarcel *
16240122Smarcel * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
17240122Smarcel * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18240122Smarcel * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19240122Smarcel * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20240122Smarcel * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
21240122Smarcel * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22240122Smarcel * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23240122Smarcel * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24240122Smarcel * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25240122Smarcel * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26240122Smarcel * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27240122Smarcel * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28240122Smarcel */
29240122Smarcel
30240122Smarcel#if !defined(ATF_C_DEFS_H)
31240122Smarcel#define ATF_C_DEFS_H
32240122Smarcel
33240122Smarcel#define ATF_DEFS_ATTRIBUTE_FORMAT_PRINTF(a, b) __attribute__((__format__(__printf__, a, b)))
34240122Smarcel#define ATF_DEFS_ATTRIBUTE_NORETURN __attribute__((__noreturn__))
35240122Smarcel#define ATF_DEFS_ATTRIBUTE_UNUSED __attribute__((__unused__))
36240122Smarcel
37240122Smarcel#endif /* !defined(ATF_C_DEFS_H) */
38