aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-01-12 17:40:02 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-01-12 17:40:02 -0200
commit91f0b20a0e1e34e242bc401c0994175e3f0cacc2 (patch)
tree51e0e071ffaf619e24caf7c687cb833d8e8ea889
parente4b4623abcf0c33cea793701c4a8691c190e0c62 (diff)
downloadlua-91f0b20a0e1e34e242bc401c0994175e3f0cacc2.tar.gz
lua-91f0b20a0e1e34e242bc401c0994175e3f0cacc2.tar.bz2
lua-91f0b20a0e1e34e242bc401c0994175e3f0cacc2.zip
missing standard defines
-rw-r--r--lbitlib.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/lbitlib.c b/lbitlib.c
index 3aaec229..57a3a60f 100644
--- a/lbitlib.c
+++ b/lbitlib.c
@@ -1,9 +1,12 @@
1/* 1/*
2** $Id: lbitlib.c,v 1.1 2009/07/01 16:17:08 roberto Exp roberto $ 2** $Id: lbitlib.c,v 1.2 2009/11/24 12:05:44 roberto Exp roberto $
3** Standard library for bitwise operations 3** Standard library for bitwise operations
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
6 6
7#define lbitlib_c
8#define LUA_LIB
9
7#include "lua.h" 10#include "lua.h"
8 11
9#include "lauxlib.h" 12#include "lauxlib.h"