repo.or.cz
/
gromacs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Support normalizing values in KeyValueTree
[gromacs.git]
/
cmake
/
TestXDR.c
blob
7165e841e90f01c6bcbfbee393438ab554368050
1
#include<rpc/rpc.h>
2
#include<rpc/xdr.h>
3
4
int
5
main
()
6
{
7
/* This should only compile, not run, so set xd to NULL */
8
XDR
*
xd
=
NULL
;
9
float
f
;
10
xdr_float
(
xd
,&
f
);
11
return
0
;
12
}