diff options
author | Janne Blomqvist <jb@gcc.gnu.org> | 2010-05-08 17:43:32 +0300 |
---|---|---|
committer | Janne Blomqvist <jb@gcc.gnu.org> | 2010-05-08 17:43:32 +0300 |
commit | 68cb9e8a47ac6e40bccbfcee1088cc7e0bf9d60f (patch) | |
tree | 9e9a82a5a27dac0a62c2ecf17fd1dead8bcc3973 | |
parent | 43896afb8b4c2f7836ea4a02cdf930bf72c468ff (diff) | |
download | gcc-68cb9e8a47ac6e40bccbfcee1088cc7e0bf9d60f.zip gcc-68cb9e8a47ac6e40bccbfcee1088cc7e0bf9d60f.tar.gz gcc-68cb9e8a47ac6e40bccbfcee1088cc7e0bf9d60f.tar.bz2 |
Fix typo in symbol visibility specification
From-SVN: r159187
-rw-r--r-- | libgfortran/ChangeLog | 4 | ||||
-rw-r--r-- | libgfortran/io/unix.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index bfe2f7e..0a22a0c 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,7 @@ +2010-05-08 Janne Blomqvist <jb@gcc.gnu.org> + + * io/unix.h (mem_alloc_r): Fix typo to reduce visibility. + 2010-05-07 Janne Blomqvist <jb@gcc.gnu.org> * libgfortran.h (free_mem): Remove prototype. diff --git a/libgfortran/io/unix.h b/libgfortran/io/unix.h index 7ea90fd..c7f92a3 100644 --- a/libgfortran/io/unix.h +++ b/libgfortran/io/unix.h @@ -98,7 +98,7 @@ extern char * mem_alloc_w (stream *, int *); internal_proto(mem_alloc_w); extern char * mem_alloc_r (stream *, int *); -internal_proto(mem_alloc_w); +internal_proto(mem_alloc_r); extern stream *input_stream (void); internal_proto(input_stream); |