projects
/
ccan
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f5d28c4
)
Fix missing include in isaac's _info.c
author
Rusty Russell
<rusty@rustcorp.com.au>
Tue, 7 Apr 2009 04:03:03 +0000
(13:33 +0930)
committer
Rusty Russell
<rusty@rustcorp.com.au>
Tue, 7 Apr 2009 04:03:03 +0000
(13:33 +0930)
ccan/isaac/_info.c
patch
|
blob
|
history
diff --git
a/ccan/isaac/_info.c
b/ccan/isaac/_info.c
index 1e8215c402de97960b3082dba45585288ed746c3..32eba0a556029a119c28b7ff687f82513441c727 100644
(file)
--- a/
ccan/isaac/_info.c
+++ b/
ccan/isaac/_info.c
@@
-102,13
+102,13
@@
* License: Public Domain
*/
#include <string.h>
+#include <stdio.h>
#include "config.h"
int main(int _argc,const char *_argv[]){
/*Expect exactly one argument.*/
if(_argc!=2)return 1;
if(strcmp(_argv[1],"depends")==0){
- /*PRINTF-CCAN-PACKAGES-YOU-NEED-ONE-PER-LINE-IF-ANY*/
printf("ccan/ilog\n");
return 0;
}