]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
man/examples: fix sd- header path
authorYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 2 Apr 2024 19:22:36 +0000 (04:22 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 3 Apr 2024 08:58:39 +0000 (17:58 +0900)
man/event-quick-child.c
man/hwdb-usb-device.c
man/path-documents.c
man/sd_bus_error-example.c

index 8195efbaa5e3334448e756cb95542bfa20d288e7..b95ee1bef632fd5deec39b7e6ffbe84650615020 100644 (file)
@@ -3,7 +3,7 @@
 #include <assert.h>
 #include <stdio.h>
 #include <unistd.h>
-#include <sd-event.h>
+#include <systemd/sd-event.h>
 
 int main(int argc, char **argv) {
   pid_t pid = fork();
index 3ac012070ebf6992728332901dff55d84309d46c..facd8c43b2995261c1165d8d314a76022e3ffeea 100644 (file)
@@ -2,7 +2,7 @@
 
 #include <stdio.h>
 #include <stdint.h>
-#include <sd-hwdb.h>
+#include <systemd/sd-hwdb.h>
 
 int print_usb_properties(uint16_t vid, uint16_t pid) {
   char match[128];
index a357dd659a84773b2fdff8ade11066c4f89d7450..994f20bcf4e172f95e6b9c24f832a6e96423c3e2 100644 (file)
@@ -2,7 +2,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <sd-path.h>
+#include <systemd/sd-path.h>
 
 int main(void) {
   int r;
index 0f70a629f314e782e1cc8255c6eaa6a2e1befe7f..3836f5e642aa0863d144448b43e64dbae23cc319 100644 (file)
@@ -3,7 +3,7 @@
 #include <errno.h>
 #include <string.h>
 #include <unistd.h>
-#include <sd-bus.h>
+#include <systemd/sd-bus.h>
 
 int writer_with_negative_errno_return(int fd, sd_bus_error *error) {
   const char *message = "Hello, World!\n";