diff options
Diffstat (limited to 'gcc/fortran/cpp.c')
-rw-r--r-- | gcc/fortran/cpp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fortran/cpp.c b/gcc/fortran/cpp.c index 0a176b2..ea53681 100644 --- a/gcc/fortran/cpp.c +++ b/gcc/fortran/cpp.c @@ -609,11 +609,11 @@ gfc_cpp_init (void) pp_dir_change (cpp_in, get_src_pwd ()); } -gfc_try +bool gfc_cpp_preprocess (const char *source_file) { if (!gfc_cpp_enabled ()) - return FAILURE; + return false; cpp_change_file (cpp_in, LC_RENAME, source_file); @@ -636,7 +636,7 @@ gfc_cpp_preprocess (const char *source_file) || (gfc_cpp_preprocess_only () && gfc_cpp_option.output_filename)) fclose (print.outf); - return SUCCESS; + return true; } void |