From d36097392e006c528263d5fa4950e1178414eddd Mon Sep 17 00:00:00 2001 From: Caleb Connolly Date: Wed, 27 Sep 2023 21:13:03 +0100 Subject: [PATCH] device: add fcntl.h for musl Musl requires that this header be explicitly included for O_CREAT, O_CLOEXEC, etc. Signed-off-by: Caleb Connolly --- device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/device.c b/device.c index 278181c..1b0e3b9 100644 --- a/device.c +++ b/device.c @@ -38,6 +38,7 @@ #include #include #include +#include #include "cdba-server.h" #include "device.h"