Add initial support for python bindings
[alexxy/gromacs.git] / cmake / TestPipes.c
1 #include <stdio.h>
2
3 int
4 main()
5 {
6   FILE *fp;
7
8   fp = popen("/tmp/xyz","r");
9   return 0;
10 }