From f379d06e24f22cb4d0afa3937c27ef35b73b00a6 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 30 Oct 2000 10:38:50 -0200 Subject: all API functions are declared in a single line (to facilitate pre-processing). --- lauxlib.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lauxlib.h') diff --git a/lauxlib.h b/lauxlib.h index 47aedc07..332c34cf 100644 --- a/lauxlib.h +++ b/lauxlib.h @@ -1,5 +1,5 @@ /* -** $Id: lauxlib.h,v 1.28 2000/10/20 16:39:03 roberto Exp roberto $ +** $Id: lauxlib.h,v 1.29 2000/10/27 16:15:53 roberto Exp roberto $ ** Auxiliary functions for building Lua libraries ** See Copyright Notice in lua.h */ @@ -29,8 +29,7 @@ struct luaL_reg { LUALIB_API void luaL_openlib (lua_State *L, const struct luaL_reg *l, int n); LUALIB_API void luaL_argerror (lua_State *L, int numarg, const char *extramsg); LUALIB_API const char *luaL_check_lstr (lua_State *L, int numArg, size_t *len); -LUALIB_API const char *luaL_opt_lstr (lua_State *L, int numArg, const char *def, - size_t *len); +LUALIB_API const char *luaL_opt_lstr (lua_State *L, int numArg, const char *def, size_t *len); LUALIB_API double luaL_check_number (lua_State *L, int numArg); LUALIB_API double luaL_opt_number (lua_State *L, int numArg, double def); -- cgit v1.2.3-55-g6feb