| Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1 | #ifndef LIBCRECOVERY_COMMON_H |
| 2 | #define LIBCRECOVERY_COMMON_H | ||||
| 3 | |||||
| 4 | #include <stdio.h> | ||||
| 5 | |||||
| 6 | int __system(const char *command); | ||||
| 7 | FILE * __popen(const char *program, const char *type); | ||||
| 8 | int __pclose(FILE *iop); | ||||
| 9 | |||||
| 10 | #endif | ||||