summaryrefslogtreecommitdiffstats
path: root/patches/libmqueue-4.41/fix_malloc_free_warnings.diff
diff options
context:
space:
mode:
Diffstat (limited to 'patches/libmqueue-4.41/fix_malloc_free_warnings.diff')
-rw-r--r--patches/libmqueue-4.41/fix_malloc_free_warnings.diff25
1 files changed, 0 insertions, 25 deletions
diff --git a/patches/libmqueue-4.41/fix_malloc_free_warnings.diff b/patches/libmqueue-4.41/fix_malloc_free_warnings.diff
deleted file mode 100644
index bb7ef2c7b..000000000
--- a/patches/libmqueue-4.41/fix_malloc_free_warnings.diff
+++ /dev/null
@@ -1,25 +0,0 @@
-This patch fixes the warnings:
-
-mqueue.c: In function 'service_request':
-mqueue.c:270: warning: incompatible implicit declaration of built-in function 'malloc'
-mqueue.c: In function 'launch':
-mqueue.c:305: warning: incompatible implicit declaration of built-in function 'free'
-mqueue.c: In function 'scan_events':
-mqueue.c:321: warning: incompatible implicit declaration of built-in function 'free'
-
----
- src/mqueue.c | 1 +
- 1 file changed, 1 insertion(+)
-
-Index: src/mqueue.c
-===================================================================
---- src/mqueue.c.orig
-+++ src/mqueue.c
-@@ -26,6 +26,7 @@
- #include <sys/syscall.h>
- #include <unistd.h>
- #include <stdio.h>
-+#include <stdlib.h>
- #include <limits.h>
- #include <stdarg.h>
- #include <errno.h>