mirror of
https://git.yoctoproject.org/poky
synced 2026-09-24 22:36:21 +02:00
(From OE-Core rev: cd1dc2334fd3e3d1db9be1d26e888051e3f59c5a) Signed-off-by: Adrian Bunk <bunk@stusta.de> -- v2: Add comment in the patch headers. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
605 B
Diff
26 lines
605 B
Diff
Compile warning fixes from Debian
|
|
|
|
Signed-off-by: Adrian Bunk <bunk@stusta.de>
|
|
Upstream-Status: Inappropriate [upstream is dead]
|
|
|
|
--- a/options.c
|
|
+++ b/options.c
|
|
@@ -41,6 +41,7 @@ static char sccsid[] = "@(#) options.c 1
|
|
#include <netinet/in.h>
|
|
#include <netdb.h>
|
|
#include <stdio.h>
|
|
+#include <unistd.h>
|
|
#include <syslog.h>
|
|
#include <pwd.h>
|
|
#include <grp.h>
|
|
--- a/scaffold.c
|
|
+++ b/scaffold.c
|
|
@@ -17,6 +17,7 @@ static char sccs_id[] = "@(#) scaffold.c
|
|
#include <arpa/inet.h>
|
|
#include <netdb.h>
|
|
#include <stdio.h>
|
|
+#include <stdlib.h>
|
|
#include <syslog.h>
|
|
#include <setjmp.h>
|
|
#include <string.h>
|