repo.or.cz
/
cmake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ENH: Some Linux distros don't install xorg-devel, png-devel, etc... when
[cmake.git]
/
Tests
/
SimpleExclude
/
dirD
/
t9.c
blob
321014b179fe9bc98ce2c21893fd9e3b0075304a
1
#include <stdio.h>
2
3
extern
int
tlib7func
();
4
5
#ifdef __CLASSIC_C__
6
int
main
()
7
{
8
int
ac
;
9
char
*
av
[];
10
#else
11
int
main
(
int
ac
,
char
*
av
[])
12
{
13
#endif
14
if
(
ac
>
1000
){
return
*
av
[
0
];}
15
printf
(
"This is T9. This one should work.
\n
"
);
16
17
if
(
tlib7func
() !=
7
)
18
{
19
fprintf
(
stderr
,
"Something wrong with T7
\n
"
);
20
return
1
;
21
}
22
return
0
;
23
}
24