Go to the documentation of this file.00001 #include <stdio.h>
00002 #include <grass/gis.h>
00003
00004 FILE *G_popen(const char *cmd, const char *mode)
00005 {
00006 return popen(cmd, mode);
00007 }
00008
00009 int G_pclose(FILE * ptr)
00010 {
00011 return pclose(ptr);
00012 }