1*f91f3926SConrad Meyer /*- 2*f91f3926SConrad Meyer * Copyright (c) 2018 Conrad Meyer <cem@FreeBSD.org> 3*f91f3926SConrad Meyer * All rights reserved. 4*f91f3926SConrad Meyer * 5*f91f3926SConrad Meyer * Redistribution and use in source and binary forms, with or without 6*f91f3926SConrad Meyer * modification, are permitted provided that the following conditions 7*f91f3926SConrad Meyer * are met: 8*f91f3926SConrad Meyer * 1. Redistributions of source code must retain the above copyright 9*f91f3926SConrad Meyer * notice, this list of conditions and the following disclaimer. 10*f91f3926SConrad Meyer * 2. Redistributions in binary form must reproduce the above copyright 11*f91f3926SConrad Meyer * notice, this list of conditions and the following disclaimer in the 12*f91f3926SConrad Meyer * documentation and/or other materials provided with the distribution. 13*f91f3926SConrad Meyer * 14*f91f3926SConrad Meyer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15*f91f3926SConrad Meyer * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16*f91f3926SConrad Meyer * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17*f91f3926SConrad Meyer * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18*f91f3926SConrad Meyer * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19*f91f3926SConrad Meyer * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20*f91f3926SConrad Meyer * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21*f91f3926SConrad Meyer * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22*f91f3926SConrad Meyer * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23*f91f3926SConrad Meyer * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24*f91f3926SConrad Meyer * SUCH DAMAGE. 25*f91f3926SConrad Meyer */ 26*f91f3926SConrad Meyer 27*f91f3926SConrad Meyer #pragma once 28*f91f3926SConrad Meyer 29*f91f3926SConrad Meyer #include <lua.h> 30*f91f3926SConrad Meyer 31*f91f3926SConrad Meyer int luaopen_errno(lua_State *L); 32