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