aboutsummaryrefslogtreecommitdiff
path: root/src/except.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/except.h')
-rw-r--r--src/except.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/except.h b/src/except.h
index 2497c05..71c31fd 100644
--- a/src/except.h
+++ b/src/except.h
@@ -31,8 +31,16 @@
31* exceptions on error, but that don't interrupt the user script. 31* exceptions on error, but that don't interrupt the user script.
32\*=========================================================================*/ 32\*=========================================================================*/
33 33
34#include "lua.h" 34#include "luasocket.h"
35
36#ifndef _WIN32
37#pragma GCC visibility push(hidden)
38#endif
35 39
36int except_open(lua_State *L); 40int except_open(lua_State *L);
37 41
42#ifndef _WIN32
43#pragma GCC visibility pop
44#endif
45
38#endif 46#endif