OSDN Git Service

2008-08-22 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / cio.c
1 /****************************************************************************
2  *                                                                          *
3  *                         GNAT COMPILER COMPONENTS                         *
4  *                                                                          *
5  *                                  C I O                                   *
6  *                                                                          *
7  *                          C Implementation File                           *
8  *                                                                          *
9  *          Copyright (C) 1992-2008, Free Software Foundation, Inc.         *
10  *                                                                          *
11  * GNAT is free software;  you can  redistribute it  and/or modify it under *
12  * terms of the  GNU General Public License as published  by the Free Soft- *
13  * ware  Foundation;  either version 2,  or (at your option) any later ver- *
14  * sion.  GNAT is distributed in the hope that it will be useful, but WITH- *
15  * OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY *
16  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License *
17  * for  more details.  You should have  received  a copy of the GNU General *
18  * Public License  distributed with GNAT;  see file COPYING.  If not, write *
19  * to  the  Free Software Foundation,  51  Franklin  Street,  Fifth  Floor, *
20  * Boston, MA 02110-1301, USA.                                              *
21  *                                                                          *
22  * As a  special  exception,  if you  link  this file  with other  files to *
23  * produce an executable,  this file does not by itself cause the resulting *
24  * executable to be covered by the GNU General Public License. This except- *
25  * ion does not  however invalidate  any other reasons  why the  executable *
26  * file might be covered by the  GNU Public License.                        *
27  *                                                                          *
28  * GNAT was originally developed  by the GNAT team at  New York University. *
29  * Extensive contributions were provided by Ada Core Technologies Inc.      *
30  *                                                                          *
31  ****************************************************************************/
32
33 #ifdef IN_RTS
34 #include "tconfig.h"
35 #include "tsystem.h"
36 #include <sys/stat.h>
37 #else
38 #include "config.h"
39 #include "system.h"
40 #endif
41
42 #include "adaint.h"
43
44 /* Don't use macros on GNU/Linux since they cause incompatible changes between
45    glibc 2.0 and 2.1 */
46 #ifdef linux
47 #undef putchar
48 #undef getchar
49 #undef fputc
50 #undef stderr
51 #undef stdout
52 #endif
53
54 #ifdef VTHREADS
55 #undef putchar
56 #undef getchar
57 #endif
58
59 #ifdef RTX
60 #include <windows.h>
61 #include <Rtapi.h>
62 #endif
63
64 int
65 get_char (void)
66 {
67 #ifdef VMS
68   return decc$getchar();
69 #else
70   return getchar ();
71 #endif
72 }
73
74 int
75 get_int (void)
76 {
77   int x;
78
79   scanf (" %d", &x);
80   return x;
81 }
82
83 void
84 put_int (int x)
85 {
86 #ifdef RTX
87    RtPrintf ("%d", x);
88 #else
89    /* Use fprintf rather than printf, since the latter is unbuffered
90       on vxworks */
91    fprintf (stdout, "%d", x);
92 #endif
93 }
94
95 void
96 put_int_stderr (int x)
97 {
98 #ifdef RTX
99   RtPrintf ("%d", x);
100 #else
101   fprintf (stderr, "%d", x);
102 #endif
103 }
104
105 void
106 put_char (int c)
107 {
108 #ifdef RTX
109   RtPrintf ("%c", c);
110 #else
111   putchar (c);
112 #endif
113 }
114
115 void
116 put_char_stderr (int c)
117 {
118 #ifdef RTX
119   RtPrintf ("%c", c);
120 #else
121   fputc (c, stderr);
122 #endif
123 }
124
125 #ifdef __vxworks
126
127 char *
128 mktemp (char *template)
129 {
130   return tmpnam (NULL);
131 }
132 #endif