Add basic grouping to Options
[alexxy/gromacs.git] / cmake / TestXDR.c
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 }