1 /* Prefer faster, non-thread-safe stdio functions if available.
3 Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation,
17 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
19 /* Written by Jim Meyering. */
22 # define UNLOCKED_IO_H 1
24 /* These are wrappers for functions/macros from the GNU C library, and
25 from other C libraries supporting POSIX's optional thread-safe functions.
27 The standard I/O functions are thread-safe. These *_unlocked ones are
28 more efficient but not thread-safe. That they're not thread-safe is
29 fine since all of the applications in this package are single threaded.
31 Also, some code that is shared with the GNU C library may invoke
32 the *_unlocked functions directly. On hosts that lack those
33 functions, invoke the non-thread-safe versions instead. */
37 # if HAVE_DECL_CLEARERR_UNLOCKED
39 # define clearerr(x) clearerr_unlocked (x)
41 # define clearerr_unlocked(x) clearerr (x)
44 # if HAVE_DECL_FEOF_UNLOCKED
46 # define feof(x) feof_unlocked (x)
48 # define feof_unlocked(x) feof (x)
51 # if HAVE_DECL_FERROR_UNLOCKED
53 # define ferror(x) ferror_unlocked (x)
55 # define ferror_unlocked(x) ferror (x)
58 # if HAVE_DECL_FFLUSH_UNLOCKED
60 # define fflush(x) fflush_unlocked (x)
62 # define fflush_unlocked(x) fflush (x)
65 # if HAVE_DECL_FGETS_UNLOCKED
67 # define fgets(x,y,z) fgets_unlocked (x,y,z)
69 # define fgets_unlocked(x,y,z) fgets (x,y,z)
72 # if HAVE_DECL_FPUTC_UNLOCKED
74 # define fputc(x,y) fputc_unlocked (x,y)
76 # define fputc_unlocked(x,y) fputc (x,y)
79 # if HAVE_DECL_FPUTS_UNLOCKED
81 # define fputs(x,y) fputs_unlocked (x,y)
83 # define fputs_unlocked(x,y) fputs (x,y)
86 # if HAVE_DECL_FREAD_UNLOCKED
88 # define fread(w,x,y,z) fread_unlocked (w,x,y,z)
90 # define fread_unlocked(w,x,y,z) fread (w,x,y,z)
93 # if HAVE_DECL_FWRITE_UNLOCKED
95 # define fwrite(w,x,y,z) fwrite_unlocked (w,x,y,z)
97 # define fwrite_unlocked(w,x,y,z) fwrite (w,x,y,z)
100 # if HAVE_DECL_GETC_UNLOCKED
102 # define getc(x) getc_unlocked (x)
104 # define getc_unlocked(x) getc (x)
107 # if HAVE_DECL_GETCHAR_UNLOCKED
109 # define getchar() getchar_unlocked ()
111 # define getchar_unlocked() getchar ()
114 # if HAVE_DECL_PUTC_UNLOCKED
116 # define putc(x,y) putc_unlocked (x,y)
118 # define putc_unlocked(x,y) putc (x,y)
121 # if HAVE_DECL_PUTCHAR_UNLOCKED
123 # define putchar(x) putchar_unlocked (x)
125 # define putchar_unlocked(x) putchar (x)
129 # define flockfile(x) ((void) 0)
132 # define ftrylockfile(x) 0
135 # define funlockfile(x) ((void) 0)
137 #endif /* UNLOCKED_IO_H */