diff options
author | Caleb Maclennan <caleb@alerque.com> | 2023-11-10 09:12:04 +0300 |
---|---|---|
committer | Caleb Maclennan <caleb@alerque.com> | 2023-11-10 09:12:04 +0300 |
commit | 5c4fc93d5f4137bf4c22ddf1a048c907a4a26727 (patch) | |
tree | a9a68e1f6a9c3bfe2b64fa1c3a4098865b7d3b5d /src/select.h | |
parent | ccef3bc4e2aa6ee5b997a80aabb58f4ff0b0e98f (diff) | |
parent | 43a97b7f0053313b43906371dbdc226271e6c8ab (diff) | |
download | luasocket-hjelmeland-patch-1.tar.gz luasocket-hjelmeland-patch-1.tar.bz2 luasocket-hjelmeland-patch-1.zip |
Merge branch 'master' into hjelmeland-patch-1hjelmeland-patch-1
Diffstat (limited to 'src/select.h')
-rw-r--r-- | src/select.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/select.h b/src/select.h index 8750200..5d45fe7 100644 --- a/src/select.h +++ b/src/select.h | |||
@@ -10,6 +10,14 @@ | |||
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 | #ifndef _WIN32 | ||
14 | #pragma GCC visibility push(hidden) | ||
15 | #endif | ||
16 | |||
13 | int select_open(lua_State *L); | 17 | int select_open(lua_State *L); |
14 | 18 | ||
19 | #ifndef _WIN32 | ||
20 | #pragma GCC visibility pop | ||
21 | #endif | ||
22 | |||
15 | #endif /* SELECT_H */ | 23 | #endif /* SELECT_H */ |