File: add-missing-stdlib.h.patch

package info (click to toggle)
crack 5.0a-18
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 9,216 kB
  • sloc: ansic: 7,445; perl: 1,375; sh: 1,062; makefile: 216
file content (25 lines) | stat: -rw-r--r-- 540 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Description: Add missing includes of stdlib.h
Author: Sven Geuer <sge@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1074890
Forwarded: not-needed
Last-Update: 2024-08-17
--- a/src/libdes/rpw.c
+++ b/src/libdes/rpw.c
@@ -45,6 +45,7 @@
  * [including the GNU Public Licence.]
  */
 
+#include <stdlib.h>
 #include <stdio.h>
 #include "des.h"
 
--- a/src/libdes/speed.c
+++ b/src/libdes/speed.c
@@ -52,6 +52,7 @@
 #define TIMES
 #endif
 
+#include <stdlib.h>
 #include <stdio.h>
 #ifndef MSDOS
 #include <unistd.h>