aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/runtime/environ.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2005-09-29 15:53:59 +0200
committerJakub Jelinek <jakub@gcc.gnu.org>2005-09-29 15:53:59 +0200
commit090037799cc3bc47500e77ed0b767b8d21bec1aa (patch)
tree6e3201f8c8d3d502dd57d16041c0f18d17a276f9 /libgfortran/runtime/environ.c
parent1ebd8d9ac1a51af9a1a65f1db575fd2499835074 (diff)
downloadgcc-090037799cc3bc47500e77ed0b767b8d21bec1aa.zip
gcc-090037799cc3bc47500e77ed0b767b8d21bec1aa.tar.gz
gcc-090037799cc3bc47500e77ed0b767b8d21bec1aa.tar.bz2
string.c (find_option): Change 3rd argument to const st_option *.
* runtime/string.c (find_option): Change 3rd argument to const st_option *. * libgfortran.h (find_option): Likewise. * runtime/environ.c (rounding, precision, signal_choices): Constify. (init_choice, show_choice): Change 2nd argument to const choice *. * io/open.c (access_opt, action_opt, blank_opt, delim_opt, form_opt, position_opt, status_opt, pad_opt): Constify. * io/transfer.c (advance_opt): Likewise. * io/inquire.c (undefined): Likewise. * io/close.c (status_opt): Likewise. * io/format.c (posint_required, period_required, nonneg_required, unexpected_element, unexpected_end, bad_string, bad_hollerith, reversion_error): Likewise. * io/unix.c (yes, no, unknown): Change from const char * into const char []. From-SVN: r104773
Diffstat (limited to 'libgfortran/runtime/environ.c')
-rw-r--r--libgfortran/runtime/environ.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libgfortran/runtime/environ.c b/libgfortran/runtime/environ.c
index 66222bf..e86f2ce 100644
--- a/libgfortran/runtime/environ.c
+++ b/libgfortran/runtime/environ.c
@@ -356,7 +356,7 @@ choice;
enum
{ FP_ROUND_NEAREST, FP_ROUND_UP, FP_ROUND_DOWN, FP_ROUND_ZERO };
-static choice rounding[] = {
+static const choice rounding[] = {
{"NEAREST", FP_ROUND_NEAREST},
{"UP", FP_ROUND_UP},
{"DOWN", FP_ROUND_DOWN},
@@ -364,7 +364,7 @@ static choice rounding[] = {
{NULL, 0}
};
-static choice precision[] =
+static const choice precision[] =
{
{ "24", 1},
{ "53", 2},
@@ -372,7 +372,7 @@ static choice precision[] =
{ NULL, 0}
};
-static choice signal_choices[] =
+static const choice signal_choices[] =
{
{ "IGNORE", 1},
{ "ABORT", 0},
@@ -381,7 +381,7 @@ static choice signal_choices[] =
static void
-init_choice (variable * v, choice * c)
+init_choice (variable * v, const choice * c)
{
char *p;
@@ -408,7 +408,7 @@ init_choice (variable * v, choice * c)
static void
-show_choice (variable * v, choice * c)
+show_choice (variable * v, const choice * c)
{
st_printf ("%s ", var_source (v));