aboutsummaryrefslogtreecommitdiff
path: root/libgfortran
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2005-09-02 13:29:53 +0000
committerAndreas Jaeger <aj@suse.de>2005-09-02 13:29:53 +0000
commitf29bc7b8db8d932592fcdc0deef68c54c2a4b0ac (patch)
treec34277f4efa9844d457a93baf923942fb9648070 /libgfortran
parent495043ffca78dc2250677df6a3b2ec9211973471 (diff)
* libgfortran.h: Add prototype for init_compile_options.
* io/io.h: Add prototype for notify_std. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@103778 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran')
-rw-r--r--libgfortran/ChangeLog8
-rw-r--r--libgfortran/io/io.h4
-rw-r--r--libgfortran/libgfortran.h5
3 files changed, 14 insertions, 3 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index 5883d29042c..1dd69cb2844 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,9 @@
+2005-09-02 Andreas Jaeger <aj@suse.de>
+
+ * libgfortran.h: Add prototype for init_compile_options.
+
+ * io/io.h: Add prototype for notify_std.
+
2005-08-31 Steve Ellcey <sje@cup.hp.com>
* io/read.c (set_integer): Use memcpy to fill buffer.
@@ -24,7 +30,7 @@
* aclocal.ac: Regenerate.
* io/io.h: Add prototype for unpack_filename.
* io/close.c (st_close): Delete file after closing unit if
- HAVE_UNLINK_OPEN_FILE is not defined.
+ HAVE_UNLINK_OPEN_FILE is not defined.
* io/unix.c (unpack_filename): Unlink scratch file after opening
it only if HAVE_UNLINK_OPEN_FILE is defined.
diff --git a/libgfortran/io/io.h b/libgfortran/io/io.h
index a09c9b4efa6..83f2dfbd0d4 100644
--- a/libgfortran/io/io.h
+++ b/libgfortran/io/io.h
@@ -656,4 +656,8 @@ internal_proto(write_z);
extern void list_formatted_write (bt, void *, int);
internal_proto(list_formatted_write);
+/* error.c */
+extern try notify_std (int, const char *);
+internal_proto(notify_std);
+
#endif
diff --git a/libgfortran/libgfortran.h b/libgfortran/libgfortran.h
index 74f911888a4..4b9e47a126a 100644
--- a/libgfortran/libgfortran.h
+++ b/libgfortran/libgfortran.h
@@ -1,5 +1,5 @@
/* Common declarations for all of libgfor.
- Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
Contributed by Paul Brook <paul@nowt.org>, and
Andy Vaught <andy@xena.eas.asu.edu>
@@ -311,7 +311,8 @@ compile_options_t;
extern compile_options_t compile_options;
internal_proto(compile_options);
-
+extern void init_compile_options (void);
+internal_proto(init_compile_options);
/* Structure for statement options. */