aboutsummaryrefslogtreecommitdiff
path: root/src/select.h
diff options
context:
space:
mode:
authorE. Westbrook <github@westbrook.io>2019-02-27 20:59:01 -0700
committerE. Westbrook <github@westbrook.io>2019-03-10 00:04:20 -0700
commitc2245f35c500b44bde6295f3f47cffd1c7b7e260 (patch)
treefc1f429cada1c1197924b0dd0e871019ecc77b74 /src/select.h
parentce6a08d57de42f8f2a78fd63b1b2bc90b3cc0156 (diff)
downloadluasocket-c2245f35c500b44bde6295f3f47cffd1c7b7e260.tar.gz
luasocket-c2245f35c500b44bde6295f3f47cffd1c7b7e260.tar.bz2
luasocket-c2245f35c500b44bde6295f3f47cffd1c7b7e260.zip
select: pragma visibility
Diffstat (limited to '')
-rw-r--r--src/select.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/select.h b/src/select.h
index 8750200..95272db 100644
--- a/src/select.h
+++ b/src/select.h
@@ -10,6 +10,10 @@
10* true if there is data ready for reading (required for buffered input). 10* true if there is data ready for reading (required for buffered input).
11\*=========================================================================*/ 11\*=========================================================================*/
12 12
13#pragma GCC visibility push(hidden)
14
13int select_open(lua_State *L); 15int select_open(lua_State *L);
14 16
17#pragma GCC visibility pop
18
15#endif /* SELECT_H */ 19#endif /* SELECT_H */