summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/meson.build4
-rw-r--r--src/common/protocol.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/src/common/meson.build b/src/common/meson.build
new file mode 100644
index 0000000..b0f0c82
--- /dev/null
+++ b/src/common/meson.build
@@ -0,0 +1,4 @@
+common_filenames = [
+]
+
+common_sources = files(common_filenames)
diff --git a/src/common/protocol.c b/src/common/protocol.c
index dc0f532..0ffaede 100644
--- a/src/common/protocol.c
+++ b/src/common/protocol.c
@@ -24,12 +24,12 @@
* separately.
*/
-#include "protocol.h"
-#include "protocol_private.h"
-#include "net.h"
#include <stdlib.h>
#include <string.h>
#include <time.h>
+#include "protocol.h"
+#include "protocol_private.h"
+#include "net.h"
#define READ_AS(from, type) (*(type*)(from))