repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
metasploit: 6.4.35 -> 6.4.36
[NixPkgs.git]
/
pkgs
/
test
/
stdenv-inputs
/
include-main.c
blob
35e5ee0d90f76d616e5f531a8ca573e3d729711f
1
#include <stdio.h>
2
#include <foo.h>
3
#include <bar.h>
4
5
int
main
(
int
argc
,
char
**
argv
)
6
{
7
if
(
foo
() !=
42
)
8
return
1
;
9
if
(
bar
() !=
42
)
10
return
1
;
11
fprintf
(
stderr
,
"ok
\n
"
);
12
return
0
;
13
}