summaryrefslogtreecommitdiff
path: root/gcc/ada/io-aux.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/io-aux.c')
-rw-r--r--gcc/ada/io-aux.c62
1 files changed, 8 insertions, 54 deletions
diff --git a/gcc/ada/io-aux.c b/gcc/ada/io-aux.c
index d42f362caec..5b9fca0e326 100644
--- a/gcc/ada/io-aux.c
+++ b/gcc/ada/io-aux.c
@@ -6,7 +6,7 @@
* *
* C Implementation File *
* *
- * $Revision: 1.1 $
+ * $Revision$
* *
* Copyright (C) 1992-2001 Free Software Foundation, Inc. *
* *
@@ -34,40 +34,12 @@
#include <stdio.h>
-#ifdef IN_RTS
-#include "tconfig.h"
-#else
-#include "config.h"
-#endif
-
/* Function wrappers are needed to access the values from Ada which are */
/* defined as C macros. */
-FILE *c_stdin PARAMS ((void));
-FILE *c_stdout PARAMS ((void));
-FILE *c_stderr PARAMS ((void));
-int seek_set_function PARAMS ((void));
-int seek_end_function PARAMS ((void));
-void *null_function PARAMS ((void));
-int c_fileno PARAMS ((FILE *));
-
-FILE *
-c_stdin ()
-{
- return stdin;
-}
-
-FILE *
-c_stdout ()
-{
- return stdout;
-}
-
-FILE *
-c_stderr ()
-{
- return stderr;
-}
+FILE *c_stdin (void) { return stdin; }
+FILE *c_stdout (void) { return stdout;}
+FILE *c_stderr (void) { return stderr;}
#ifndef SEEK_SET /* Symbolic constants for the "fseek" function: */
#define SEEK_SET 0 /* Set file pointer to offset */
@@ -75,26 +47,8 @@ c_stderr ()
#define SEEK_END 2 /* Set file pointer to the size of the file plus offset */
#endif
-int
-seek_set_function ()
-{
- return SEEK_SET;
-}
-
-int
-seek_end_function ()
-{
- return SEEK_END;
-}
-
-void *null_function ()
-{
- return NULL;
-}
+int seek_set_function (void) { return SEEK_SET; }
+int seek_end_function (void) { return SEEK_END; }
+void *null_function (void) { return NULL; }
-int
-c_fileno (s)
- FILE *s;
-{
- return fileno (s);
-}
+int c_fileno (FILE *s) { return fileno (s); }