Updated cool quotes
[gromacs.git] / cmake / TestXDR.c
blob7165e841e90f01c6bcbfbee393438ab554368050
1 #include<rpc/rpc.h>
2 #include<rpc/xdr.h>
4 int
5 main()
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;