Add initial support for python bindings
[alexxy/gromacs.git] / cmake / TestXDR.c
1 #include<rpc/rpc.h>
2 #include<rpc/xdr.h>
3
4 int
5 main()
6 {
7   XDR *xd; 
8   float f; 
9   xdr_float(xd,&f);
10 }