1*971bb1a5SLionel Sambuc /* $NetBSD: stbi.h,v 1.1 2011/02/06 23:13:04 jmcneill Exp $ */ 2*971bb1a5SLionel Sambuc 3*971bb1a5SLionel Sambuc /*- 4*971bb1a5SLionel Sambuc * Copyright (c) 2011 Jared D. McNeill <jmcneill@invisible.ca> 5*971bb1a5SLionel Sambuc * All rights reserved. 6*971bb1a5SLionel Sambuc * 7*971bb1a5SLionel Sambuc * Redistribution and use in source and binary forms, with or without 8*971bb1a5SLionel Sambuc * modification, are permitted provided that the following conditions 9*971bb1a5SLionel Sambuc * are met: 10*971bb1a5SLionel Sambuc * 1. Redistributions of source code must retain the above copyright 11*971bb1a5SLionel Sambuc * notice, this list of conditions and the following disclaimer. 12*971bb1a5SLionel Sambuc * 2. Redistributions in binary form must reproduce the above copyright 13*971bb1a5SLionel Sambuc * notice, this list of conditions and the following disclaimer in the 14*971bb1a5SLionel Sambuc * documentation and/or other materials provided with the distribution. 15*971bb1a5SLionel Sambuc * 3. All advertising materials mentioning features or use of this software 16*971bb1a5SLionel Sambuc * must display the following acknowledgement: 17*971bb1a5SLionel Sambuc * This product includes software developed by the NetBSD 18*971bb1a5SLionel Sambuc * Foundation, Inc. and its contributors. 19*971bb1a5SLionel Sambuc * 4. Neither the name of The NetBSD Foundation nor the names of its 20*971bb1a5SLionel Sambuc * contributors may be used to endorse or promote products derived 21*971bb1a5SLionel Sambuc * from this software without specific prior written permission. 22*971bb1a5SLionel Sambuc * 23*971bb1a5SLionel Sambuc * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 24*971bb1a5SLionel Sambuc * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 25*971bb1a5SLionel Sambuc * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 26*971bb1a5SLionel Sambuc * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 27*971bb1a5SLionel Sambuc * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 28*971bb1a5SLionel Sambuc * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 29*971bb1a5SLionel Sambuc * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 30*971bb1a5SLionel Sambuc * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 31*971bb1a5SLionel Sambuc * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 32*971bb1a5SLionel Sambuc * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 33*971bb1a5SLionel Sambuc * POSSIBILITY OF SUCH DAMAGE. 34*971bb1a5SLionel Sambuc */ 35*971bb1a5SLionel Sambuc 36*971bb1a5SLionel Sambuc #ifndef _DEV_STBI_STBI_H 37*971bb1a5SLionel Sambuc #define _DEV_STBI_STBI_H 38*971bb1a5SLionel Sambuc 39*971bb1a5SLionel Sambuc #define STBI_HEADER_FILE_ONLY 40*971bb1a5SLionel Sambuc #include <dev/stbi/stb_image.c> 41*971bb1a5SLionel Sambuc 42*971bb1a5SLionel Sambuc #endif /* !_DEV_STBI_STBI_H */ 43