OSDN Git Service

* 41intnam.ads, 42intnam.ads, 4aintnam.ads, 4cintnam.ads,
[pf3gnuchains/gcc-fork.git] / gcc / ada / io-aux.c
index d42f362..5b9fca0 100644 (file)
@@ -6,7 +6,7 @@
  *                                                                          *
  *                          C Implementation File                           *
  *                                                                          *
- *                            $Revision: 1.1 $
+ *                            $Revision$
  *                                                                          *
  *           Copyright (C) 1992-2001 Free Software Foundation, Inc.         *
  *                                                                          *
 
 #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); }