repo.or.cz
/
WRF.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add comments to old c preproc / m4 processing since gfortran is unable to
[WRF.git]
/
tools
/
rpc_test.c
blob
1bee12bd4559a796c2ab7ea8ab2947116acac490
1
#include <stdio.h>
2
3
#ifdef USE_TIRPC
4
#include <tirpc/rpc/types.h>
5
#else
6
#include <rpc/types.h>
7
#endif
8
9
/* Should confirm type to avoid symlink hack false positivies */
10
int
main
()
11
{
12
#ifdef _RPC_TYPES_H
13
printf
(
"rpc
\n
"
);
14
#endif
15
16
#ifdef _TIRPC_TYPES_H
17
printf
(
"tirpc
\n
"
);
18
#endif
19
return
0
;
20
}