mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 05:53:30 +08:00
298cd8eaa2
Autogenerated from rename-patch.py (http://patchwork.ozlabs.org/patch/403345) Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
17 lines
563 B
Diff
17 lines
563 B
Diff
examples/testd.c: As the C POSIX library recommends include the <unistd.h>
|
|
instead of <sys/unistd.h>. This removes an error when building libdaemon
|
|
against the musl C library.
|
|
|
|
Signed-off-by: Jörg Krause <jkrause@posteo.de>
|
|
--- libdaemon-0.14.orig/examples/testd.c 2014-08-30 00:27:08.359832977 +0200
|
|
+++ libdaemon-0.14/examples/testd.c 2014-08-30 00:27:25.439832670 +0200
|
|
@@ -23,7 +23,7 @@
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <sys/time.h>
|
|
-#include <sys/unistd.h>
|
|
+#include <unistd.h>
|
|
#include <sys/select.h>
|
|
|
|
#include <libdaemon/dfork.h>
|