mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-14 01:23:23 -04:00
Bug: https://bugs.gentoo.org/927801 Signed-off-by: Quincy Fleming <quincyf467@protonmail.com>
24 lines
489 B
Diff
24 lines
489 B
Diff
#Created by Quincy Fleming
|
|
#Failure to compile without include "<stdlib.h>"
|
|
#Bug: https://bugs.gentoo.org/927801
|
|
--- a/patch.c
|
|
+++ b/patch.c
|
|
@@ -30,6 +30,7 @@
|
|
*/
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
+#include <stdlib.h>
|
|
#include <libxml/parser.h>
|
|
#include <libxml/tree.h>
|
|
|
|
--- a/program.c
|
|
+++ b/program.c
|
|
@@ -31,6 +31,7 @@
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <string.h>
|
|
+#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <libxml/parser.h>
|
|
#include <libxml/tree.h>
|