aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/libgfortran.h
diff options
context:
space:
mode:
authorFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>2007-10-04 15:18:48 +0000
committerFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>2007-10-04 15:18:48 +0000
commit34e366b39cde963eef58a75227bcbb655e4b1a20 (patch)
tree5551ed792ad3f21c6705d16b1ca3f5d97d6659c1 /libgfortran/libgfortran.h
parent78b36b70be3d76df54b8d50a5f09368db15477c9 (diff)
downloadgcc-34e366b39cde963eef58a75227bcbb655e4b1a20.zip
gcc-34e366b39cde963eef58a75227bcbb655e4b1a20.tar.gz
gcc-34e366b39cde963eef58a75227bcbb655e4b1a20.tar.bz2
re PR fortran/32021 (Fix,document,remove GFORTRAN_* environment variables)
PR libfortran/32021 * runtime/environ.c (init_mem, show_mem, init_round, show_round, init_precision, show_precision, init_signal, show_signal): Remove. (variable_table): Remove GFORTRAN_MEM_INIT, GFORTRAN_MEM_CHECK, GFORTRAN_SIGHUP, GFORTRAN_SIGINT, GFORTRAN_FPU_ROUND and GFORTRAN_FPU_PRECISION. * libgfortran.h (options_t): Remove mem_check, fpu_round, fpu_precision, sighup, sigint, allocate_init_flag and allocate_init_value. From-SVN: r129014
Diffstat (limited to 'libgfortran/libgfortran.h')
-rw-r--r--libgfortran/libgfortran.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/libgfortran/libgfortran.h b/libgfortran/libgfortran.h
index 6a702c4..8d80998 100644
--- a/libgfortran/libgfortran.h
+++ b/libgfortran/libgfortran.h
@@ -344,19 +344,13 @@ typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_LOGICAL_16) gfc_array_l16;
typedef struct
{
int stdin_unit, stdout_unit, stderr_unit, optional_plus;
- int allocate_init_flag, allocate_init_value;
int locus;
int separator_len;
const char *separator;
- int mem_check;
int use_stderr, all_unbuffered, default_recl;
-
- int fpu_round, fpu_precision, fpe;
-
- int sighup, sigint;
- int dump_core, backtrace;
+ int fpe, dump_core, backtrace;
}
options_t;