projects
/
dss.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ce9d8db
)
dss.c: Add missing inclusion of <stdio.h>.
author
Andre Noll
<maan@tuebingen.mpg.de>
Tue, 7 Jun 2016 14:29:38 +0000
(16:29 +0200)
committer
Andre Noll
<maan@tuebingen.mpg.de>
Sun, 21 Aug 2016 19:13:25 +0000
(21:13 +0200)
This is required for example for rename(2). Compilation succeeds without
the include only because the gengetopt header includes stdio.h as well and
we happen to include this header before fd.h.
dss.c
patch
|
blob
|
history
diff --git
a/dss.c
b/dss.c
index
5f7cfe0
..
03ddaf8
100644
(file)
--- a/
dss.c
+++ b/
dss.c
@@
-5,6
+5,7
@@
*/
#include <string.h>
#include <stdlib.h>
+#include <stdio.h>
#include <stdarg.h>
#include <assert.h>
#include <errno.h>