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
Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git]
/
pkgs
/
test
/
cc-wrapper
/
ldflags-main.c
blob
89832b3bbad2db17e130acc7649607430b50e622
1
#include <stdio.h>
2
3
extern
unsigned int
foo
(
void
);
4
5
int
main
(
int
argc
,
char
**
argv
)
6
{
7
if
(
foo
() !=
42
) {
8
return
1
;
9
}
10
fprintf
(
stderr
,
"ok
\n
"
);
11
return
0
;
12
}