X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2Fada%2Fio-aux.c;h=5b9fca0e32616882b79ab4e3330bbd40dc7cdf79;hb=f15731c43ae5e8cea424ea40f905c19afa1bd2e4;hp=d42f362caec72c29279a8dd06d9971c941b37daa;hpb=1d347c236ad815c77bd345611ed221b0bd6091de;p=pf3gnuchains%2Fgcc-fork.git 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 -#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); }