aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/io/io.h
diff options
context:
space:
mode:
authorJanne Blomqvist <jb@gcc.gnu.org>2011-04-12 22:27:49 +0300
committerJanne Blomqvist <jb@gcc.gnu.org>2011-04-12 22:27:49 +0300
commit44720bef9d5a11cf39c1eabbeb2c0739d0504ef8 (patch)
tree17933ebe7d8de121ec47c896cf51dd424e7498fd /libgfortran/io/io.h
parent99ee02511431124acbfded6350ce5f857664560d (diff)
downloadgcc-44720bef9d5a11cf39c1eabbeb2c0739d0504ef8.zip
gcc-44720bef9d5a11cf39c1eabbeb2c0739d0504ef8.tar.gz
gcc-44720bef9d5a11cf39c1eabbeb2c0739d0504ef8.tar.bz2
Cleanup memsize types
From-SVN: r172340
Diffstat (limited to 'libgfortran/io/io.h')
-rw-r--r--libgfortran/io/io.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/libgfortran/io/io.h b/libgfortran/io/io.h
index b48582d..37353d7 100644
--- a/libgfortran/io/io.h
+++ b/libgfortran/io/io.h
@@ -53,22 +53,21 @@ struct gfc_unit;
#define is_char4_unit(dtp) ((dtp)->u.p.unit_is_internal && (dtp)->common.unit)
/* The array_loop_spec contains the variables for the loops over index ranges
- that are encountered. Since the variables can be negative, ssize_t
- is used. */
+ that are encountered. */
typedef struct array_loop_spec
{
/* Index counter for this dimension. */
- ssize_t idx;
+ index_type idx;
/* Start for the index counter. */
- ssize_t start;
+ index_type start;
/* End for the index counter. */
- ssize_t end;
+ index_type end;
/* Step for the index counter. */
- ssize_t step;
+ index_type step;
}
array_loop_spec;