Browse Source

LUAL_BUFFERSIZE is used in `lauxlib.h' and so everybody may need it

Roberto Ierusalimschy 21 years ago
parent
commit
b0f341ee52
1 changed files with 4 additions and 4 deletions
  1. 4 4
      luaconf.h

+ 4 - 4
luaconf.h

@@ -1,5 +1,5 @@
 /*
-** $Id: $
+** $Id: luaconf.h,v 1.1 2004/05/03 12:28:43 roberto Exp roberto $
 ** Configuration file for Lua
 ** See Copyright Notice in lua.h
 */
@@ -48,6 +48,9 @@
 /* mark for auxlib functions */
 #define LUALIB_API      extern
 
+/* buffer size used by lauxlib buffer system */
+#define LUAL_BUFFERSIZE   BUFSIZ
+
 /* }====================================================== */
 
 
@@ -218,9 +221,6 @@
 
 #ifdef LUA_LIB
 
-/* buffer size used by lauxlib buffer system */
-#define LUAL_BUFFERSIZE   BUFSIZ
-
 
 
 /* `assert' options */