2011-06-09 02:03:27 +00:00
|
|
|
#ifndef LIBCRECOVERY_COMMON_H
|
|
|
|
#define LIBCRECOVERY_COMMON_H
|
|
|
|
|
2011-06-27 18:02:44 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2011-06-09 02:03:27 +00:00
|
|
|
int __system(const char *command);
|
|
|
|
FILE * __popen(const char *program, const char *type);
|
|
|
|
int __pclose(FILE *iop);
|
|
|
|
|
|
|
|
#endif
|