Koushik Dutta | 5082299 | 2011-06-08 19:03:27 -0700 | [diff] [blame] | 1 | #ifndef LIBCRECOVERY_COMMON_H |
2 | #define LIBCRECOVERY_COMMON_H | ||||
3 | |||||
Koushik Dutta | aee5f85 | 2011-06-27 11:02:44 -0700 | [diff] [blame] | 4 | #include <stdio.h> |
5 | |||||
Koushik Dutta | 5082299 | 2011-06-08 19:03:27 -0700 | [diff] [blame] | 6 | int __system(const char *command); |
7 | FILE * __popen(const char *program, const char *type); | ||||
8 | int __pclose(FILE *iop); | ||||
9 | |||||
10 | #endif |