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/serial.c | |
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 '')
-rw-r--r-- | src/serial.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/serial.c b/src/serial.c index 7bdb21c..21485d3 100644 --- a/src/serial.c +++ b/src/serial.c | |||
@@ -2,15 +2,14 @@ | |||
2 | * Serial stream | 2 | * Serial stream |
3 | * LuaSocket toolkit | 3 | * LuaSocket toolkit |
4 | \*=========================================================================*/ | 4 | \*=========================================================================*/ |
5 | #include <string.h> | 5 | #include "luasocket.h" |
6 | |||
7 | #include "lua.h" | ||
8 | #include "lauxlib.h" | ||
9 | 6 | ||
10 | #include "auxiliar.h" | 7 | #include "auxiliar.h" |
11 | #include "socket.h" | 8 | #include "socket.h" |
12 | #include "options.h" | 9 | #include "options.h" |
13 | #include "unix.h" | 10 | #include "unix.h" |
11 | |||
12 | #include <string.h> | ||
14 | #include <sys/un.h> | 13 | #include <sys/un.h> |
15 | 14 | ||
16 | /* | 15 | /* |