diff options
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -25,7 +25,7 @@ extern "C" { #endif -#define LOGE(...) ui_print("E:" __VA_ARGS__) +#define LOGE(...) fprintf(stdout, "E:" __VA_ARGS__) #define LOGW(...) fprintf(stdout, "W:" __VA_ARGS__) #define LOGI(...) fprintf(stdout, "I:" __VA_ARGS__) @@ -41,7 +41,7 @@ extern "C" { #define EXPAND(x) STRINGIFY(x) extern bool modified_flash; -typedef struct fstab_rec Volume; +//typedef struct fstab_rec Volume; // fopen a file, mounting volumes and making parent dirs as necessary. FILE* fopen_path(const char *path, const char *mode); |