]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/rfkill/rfkill.c
util-lib: split string parsing related calls from util.[ch] into parse-util.[ch]
[thirdparty/systemd.git] / src / rfkill / rfkill.c
index d8a2f3694eaae2a649c8a21c675ef6d78a7bd0a2..559a17653531c84aa6df86408f55b1cb6ceeea51 100644 (file)
 #include "libudev.h"
 #include "sd-daemon.h"
 
+#include "escape.h"
+#include "fd-util.h"
 #include "fileio.h"
+#include "io-util.h"
 #include "mkdir.h"
+#include "parse-util.h"
+#include "string-util.h"
 #include "udev-util.h"
 #include "util.h"
 
@@ -40,8 +45,8 @@ static const char* const rfkill_type_table[NUM_RFKILL_TYPES] = {
         [RFKILL_TYPE_WIMAX] = "wimax",
         [RFKILL_TYPE_WWAN] = "wwan",
         [RFKILL_TYPE_GPS] = "gps",
-        [RFKILL_TYPE_FM] "fm",
-        [RFKILL_TYPE_NFC] "nfc",
+        [RFKILL_TYPE_FM] "fm",
+        [RFKILL_TYPE_NFC] "nfc",
 };
 
 DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(rfkill_type, int);