File: 13-explicitly-include-stdlib.h.patch

package info (click to toggle)
osdsh 0.7.0-12
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 568 kB
  • sloc: ansic: 1,064; tcl: 335; makefile: 69
file content (18 lines) | stat: -rw-r--r-- 448 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
From: Andrej Shadura <andrewsh@debian.org>
Date: Mon, 4 Jan 2021 18:27:56 +0100
Subject: Explicitly include stdlib.h

---
 src/osdctl/osdctl.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/osdctl/osdctl.h b/src/osdctl/osdctl.h
index 665238a..cb87af3 100644
--- a/src/osdctl/osdctl.h
+++ b/src/osdctl/osdctl.h
@@ -1,4 +1,5 @@
 #include <stdio.h>
+#include <stdlib.h>
 #include <getopt.h>
 #include <linux/limits.h>
 #include <sys/types.h>