From 3703a6f28d48ac3f2c28d07405fab17a2a402df4 Mon Sep 17 00:00:00 2001 From: Gediminas Jakutis Date: Wed, 22 May 2019 14:44:00 +0300 Subject: device: actually make it all build and such. Signed-off-by: Gediminas Jakutis --- src/common/meson.build | 4 ++++ src/common/protocol.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 src/common/meson.build (limited to 'src/common') 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 #include #include +#include "protocol.h" +#include "protocol_private.h" +#include "net.h" #define READ_AS(from, type) (*(type*)(from)) -- cgit v1.2.3