aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-09-02 16:53:25 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-09-02 16:53:25 -0300
commit8ead2ec35800b981480212725d2d3eeb19f4bea0 (patch)
tree135bfd9ffbe87a654e72514ee9dbec7b36e0b088
parentc3cc4de3fd94732b5c774b513c1a3159f2eff429 (diff)
downloadlua-8ead2ec35800b981480212725d2d3eeb19f4bea0.tar.gz
lua-8ead2ec35800b981480212725d2d3eeb19f4bea0.tar.bz2
lua-8ead2ec35800b981480212725d2d3eeb19f4bea0.zip
wrong syntax for Windows-specific options
-rw-r--r--luaconf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/luaconf.h b/luaconf.h
index fc5c2db0..344d628d 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.61 2005/08/22 19:58:29 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.62 2005/08/25 15:38:53 roberto Exp roberto $
3** Configuration file for Lua 3** Configuration file for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -114,9 +114,9 @@
114#if defined(LUA_BUILD_AS_DLL) 114#if defined(LUA_BUILD_AS_DLL)
115 115
116#if defined(LUA_CORE) || defined(LUA_LIB) 116#if defined(LUA_CORE) || defined(LUA_LIB)
117#define LUA_API __declspec(__dllexport) 117#define LUA_API __declspec(dllexport)
118#else 118#else
119#define LUA_API __declspec(__dllimport) 119#define LUA_API __declspec(dllimport)
120#endif 120#endif
121 121
122#else 122#else