1*93f27766SDomagoj Stolfa /*- 2*93f27766SDomagoj Stolfa * SPDX-License-Identifier: BSD-2-Clause 3*93f27766SDomagoj Stolfa * 4*93f27766SDomagoj Stolfa * Copyright (c) 2023 Domagoj Stolfa 5*93f27766SDomagoj Stolfa * 6*93f27766SDomagoj Stolfa * Redistribution and use in source and binary forms, with or without 7*93f27766SDomagoj Stolfa * modification, are permitted provided that the following conditions 8*93f27766SDomagoj Stolfa * are met: 9*93f27766SDomagoj Stolfa * 1. Redistributions of source code must retain the above copyright 10*93f27766SDomagoj Stolfa * notice, this list of conditions and the following disclaimer. 11*93f27766SDomagoj Stolfa * 2. Redistributions in binary form must reproduce the above copyright 12*93f27766SDomagoj Stolfa * notice, this list of conditions and the following disclaimer in the 13*93f27766SDomagoj Stolfa * documentation and/or other materials provided with the distribution. 14*93f27766SDomagoj Stolfa * 15*93f27766SDomagoj Stolfa * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16*93f27766SDomagoj Stolfa * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17*93f27766SDomagoj Stolfa * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18*93f27766SDomagoj Stolfa * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19*93f27766SDomagoj Stolfa * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20*93f27766SDomagoj Stolfa * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21*93f27766SDomagoj Stolfa * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22*93f27766SDomagoj Stolfa * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23*93f27766SDomagoj Stolfa * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24*93f27766SDomagoj Stolfa * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25*93f27766SDomagoj Stolfa * SUCH DAMAGE. 26*93f27766SDomagoj Stolfa */ 27*93f27766SDomagoj Stolfa 28*93f27766SDomagoj Stolfa #ifndef _DT_OFORMAT_H_ 29*93f27766SDomagoj Stolfa #define _DT_OFORMAT_H_ 30*93f27766SDomagoj Stolfa 31*93f27766SDomagoj Stolfa #undef NORETURN /* needed because libxo redefines it */ 32*93f27766SDomagoj Stolfa #include <libxo/xo.h> 33*93f27766SDomagoj Stolfa 34*93f27766SDomagoj Stolfa #endif /* _DT_OFORMAT_H_ */ 35