mirror of git://gcc.gnu.org/git/gcc.git
Fix typo in symbol visibility specification
From-SVN: r159187
This commit is contained in:
parent
43896afb8b
commit
68cb9e8a47
|
@ -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>
|
2010-05-07 Janne Blomqvist <jb@gcc.gnu.org>
|
||||||
|
|
||||||
* libgfortran.h (free_mem): Remove prototype.
|
* libgfortran.h (free_mem): Remove prototype.
|
||||||
|
|
|
@ -98,7 +98,7 @@ extern char * mem_alloc_w (stream *, int *);
|
||||||
internal_proto(mem_alloc_w);
|
internal_proto(mem_alloc_w);
|
||||||
|
|
||||||
extern char * mem_alloc_r (stream *, int *);
|
extern char * mem_alloc_r (stream *, int *);
|
||||||
internal_proto(mem_alloc_w);
|
internal_proto(mem_alloc_r);
|
||||||
|
|
||||||
extern stream *input_stream (void);
|
extern stream *input_stream (void);
|
||||||
internal_proto(input_stream);
|
internal_proto(input_stream);
|
||||||
|
|
Loading…
Reference in New Issue