diff options
author | Diego Nehab <diego.nehab@gmail.com> | 2019-03-11 00:08:41 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 00:08:41 -0300 |
commit | c89a931cc31f219d51dd32a8a253d5ee3fbd31be (patch) | |
tree | 1fc604d7cbd6a42c801b92b145651d91c458dfa2 /src/mime.c | |
parent | 2af4872a401cbd0c1255e19ee26620f0431dd9f5 (diff) | |
parent | 21514304be9e98a4386cb18542582068a59c5586 (diff) | |
download | luasocket-c89a931cc31f219d51dd32a8a253d5ee3fbd31be.tar.gz luasocket-c89a931cc31f219d51dd32a8a253d5ee3fbd31be.tar.bz2 luasocket-c89a931cc31f219d51dd32a8a253d5ee3fbd31be.zip |
Merge pull request #271 from ewestbrook/pragmavisibility
Use visibility pragma around declarations instead of attributes on definitions
Diffstat (limited to 'src/mime.c')
-rwxr-xr-x | src/mime.c | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -2,15 +2,11 @@ | |||
2 | * MIME support functions | 2 | * MIME support functions |
3 | * LuaSocket toolkit | 3 | * LuaSocket toolkit |
4 | \*=========================================================================*/ | 4 | \*=========================================================================*/ |
5 | #include "luasocket.h" | ||
6 | #include "mime.h" | ||
5 | #include <string.h> | 7 | #include <string.h> |
6 | #include <ctype.h> | 8 | #include <ctype.h> |
7 | 9 | ||
8 | #include "lua.h" | ||
9 | #include "lauxlib.h" | ||
10 | #include "compat.h" | ||
11 | |||
12 | #include "mime.h" | ||
13 | |||
14 | /*=========================================================================*\ | 10 | /*=========================================================================*\ |
15 | * Don't want to trust escape character constants | 11 | * Don't want to trust escape character constants |
16 | \*=========================================================================*/ | 12 | \*=========================================================================*/ |