Don't override --enable-multi-arch.
[glibc.git] / conform / data / stdio.h-data
blobcba7721d9afa961c6c6a389a40791b115ec5a479
1 constant BUFSIZ
2 constant FILENAME_MAX
3 constant FOPEN_MAX >= 8
5 constant _IOFBF
6 constant _IOLBF
7 constant _IONBF
9 constant L_ctermid
10 #if !defined XOPEN2K && !defined XOPEN2K8 && !defined POSIX2008
11 constant L_cuserid
12 #endif
13 constant L_tmpnam
15 constant SEEK_CUR
16 constant SEEK_END
17 constant SEEK_SET
19 constant TMP_MAX >= 10000
21 constant EOF
23 constant NULL
25 #if !defined POSIX && !defined POSIX2008
26 constant P_tmpdir
27 #endif
29 macro stdin
30 macro stdout
31 macro stderr
33 type FILE
34 type fpos_t
35 type va_list
36 type size_t
37 #if defined XOPEN2K8 || defined POSIX2008
38 type off_t
39 type ssize_t
40 #endif
42 function void clearerr (FILE*)
43 function {char*} ctermid (char*)
44 #if !defined XOPEN2K && !defined XOPEN2K8 && !defined POSIX2008
45 function {char*} cuserid (char*)
46 #endif
47 #if defined XOPEN2K8 || defined POSIX2008
48 function int dprintf (int, const char*, ...)
49 #endif
50 function int fclose (FILE*)
51 function {FILE*} fdopen (int, const char*)
52 function int feof (FILE*)
53 function int ferror (FILE*)
54 function int fflush (FILE*)
55 function int fgetc (FILE*)
56 function int fgetpos (FILE*, fpos_t*)
57 function {char*} fgets (char*, int, FILE*)
58 function int fileno (FILE*)
59 function void flockfile (FILE*)
60 #if defined XOPEN2K8 || defined POSIX2008
61 function {FILE*} fmemopen (void*, size_t, const char*)
62 #endif
63 function {FILE*} fopen (const char*, const char*)
64 function int fprintf (FILE*, const char*, ...)
65 function int fputc (int, FILE*)
66 function int fputs (const char*, FILE*)
67 function size_t fread (void*, size_t, size_t, FILE*)
68 function {FILE*} freopen (const char*, const char*, FILE*)
69 function int fscanf (FILE*, const char*, ...)
70 function int fseek (FILE*, long int, int)
71 function int fseeko (FILE*, off_t, int)
72 function int fsetpos (FILE*, const fpos_t*)
73 function {long int} ftell (FILE*)
74 function off_t ftello (FILE*)
75 function int ftrylockfile (FILE*)
76 function void funlockfile (FILE*)
77 function size_t fwrite (const void*, size_t, size_t, FILE*)
78 function int getc (FILE*)
79 function int getchar (void)
80 function int getc_unlocked (FILE*)
81 function int getchar_unlocked ()
82 #if defined XOPEN2K8 || defined POSIX2008
83 function ssize_t getdelim (char**, size_t*, int, FILE*)
84 function ssize_t getline (char**, size_t*, FILE*)
85 #endif
86 #if !defined XOPEN2K && !defined XOPEN2K8 && !defined POSIX2008
87 function int getopt (int, char *const[], const char *)
88 #endif
89 function {char*} gets (char*)
90 #if !defined XOPEN2K && !defined XOPEN2K8 && !defined POSIX2008
91 function int getw (FILE*)
92 #endif
93 #if defined XOPEN2K8 || defined POSIX2008
94 function {FILE*} open_memstream (char**, size_t*)
95 #endif
96 function int pclose (FILE*)
97 function void perror (const char*)
98 function {FILE*} popen (const char*, const char*)
99 function int printf (const char*, ...)
100 function int putc (int, FILE*)
101 function int putchar (int)
102 function int putc_unlocked (int, FILE*)
103 function int putchar_unlocked (int)
104 function int puts (const char*)
105 #if !defined XOPEN2K && !defined XOPEN2K8 && !defined POSIX2008
106 function int putw (int, FILE*)
107 #endif
108 function int remove (const char*)
109 function int rename (const char*, const char*)
110 #if defined XOPEN2K8 || defined POSIX2008
111 function int renameat (int, const char*, int, const char*)
112 #endif
113 function void rewind (FILE*)
114 function int scanf (const char*, ...)
115 function void setbuf (FILE*, char*)
116 function int setvbuf (FILE*, char*, int, size_t)
117 function int snprintf (char*, size_t, const char*, ...)
118 function int sprintf (char *, const char *, ...)
119 function int sscanf (const char*, const char*, ...)
120 #if !defined POSIX && !defined POSIX2008
121 function {char*} tempnam (const char*, const char*)
122 #endif
123 function {FILE*} tmpfile (void)
124 function {char*} tmpnam (char*)
125 function int ungetc (int, FILE*)
126 #if defined XOPEN2K8 || defined POSIX2008
127 function int vdprintf (int, const char*, va_list)
128 #endif
129 function int vfprintf (FILE*, const char*, va_list)
130 #if defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008
131 function int vfscanf (FILE*, const char*, va_list)
132 #endif
133 function int vprintf (const char*, va_list)
134 #if defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008
135 function int vscanf (const char*, va_list)
136 #endif
137 function int vsnprintf (char*, size_t, const char*, va_list)
138 function int vsprintf (char*, const char*, va_list)
139 #if defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008
140 function int vsscanf (const char*, const char*, va_list)
141 #endif
143 #if !defined ISO && !defined POSIX
144 #if !defined XOPEN2K && !defined XOPEN2K8 && !defined POSIX2008
145 variable {char*} optarg
146 variable int opterr
147 variable int optind
148 variable int optopt
149 #endif
151 allow-header stddef.h
153 allow *_t
154 #endif