2012-05-24 21:58:04 +00:00
|
|
|
macro-int-constant BUFSIZ >= 256
|
|
|
|
macro-int-constant FILENAME_MAX
|
|
|
|
macro-int-constant FOPEN_MAX >= 8
|
2000-02-23 06:02:09 +00:00
|
|
|
|
2012-05-24 21:58:04 +00:00
|
|
|
macro-int-constant _IOFBF
|
|
|
|
macro-int-constant _IOLBF
|
|
|
|
macro-int-constant _IONBF
|
2000-02-23 06:02:09 +00:00
|
|
|
|
2012-02-26 04:18:39 +00:00
|
|
|
#if !defined ISO && !defined ISO99 && !defined ISO11
|
2000-02-23 06:02:09 +00:00
|
|
|
constant L_ctermid
|
2012-02-26 04:18:39 +00:00
|
|
|
# if !defined XOPEN2K && !defined XOPEN2K8 && !defined POSIX2008
|
2012-11-19 22:20:44 +00:00
|
|
|
# ifdef POSIX
|
|
|
|
optional-constant L_cuserid
|
|
|
|
# else
|
2000-02-23 06:02:09 +00:00
|
|
|
constant L_cuserid
|
2012-11-19 22:20:44 +00:00
|
|
|
# endif
|
2012-02-26 04:18:39 +00:00
|
|
|
# endif
|
2010-01-09 18:56:41 +00:00
|
|
|
#endif
|
2012-05-24 21:58:04 +00:00
|
|
|
macro-int-constant L_tmpnam
|
2000-02-23 06:02:09 +00:00
|
|
|
|
2012-05-24 21:58:04 +00:00
|
|
|
macro-int-constant SEEK_CUR
|
|
|
|
macro-int-constant SEEK_END
|
|
|
|
macro-int-constant SEEK_SET
|
2000-02-23 06:02:09 +00:00
|
|
|
|
2012-05-24 21:58:04 +00:00
|
|
|
macro-int-constant TMP_MAX >= 10000
|
2000-02-23 06:02:09 +00:00
|
|
|
|
2012-05-24 21:58:04 +00:00
|
|
|
macro-int-constant EOF < 0
|
2000-02-23 06:02:09 +00:00
|
|
|
|
2012-05-24 21:58:04 +00:00
|
|
|
macro-constant NULL == 0
|
2000-02-23 06:02:09 +00:00
|
|
|
|
2012-02-26 04:18:39 +00:00
|
|
|
#if !defined ISO && !defined ISO99 && !defined ISO11 && !defined POSIX && !defined POSIX2008
|
2000-02-23 06:02:09 +00:00
|
|
|
constant P_tmpdir
|
2010-01-09 18:56:41 +00:00
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
|
2012-05-24 21:58:04 +00:00
|
|
|
macro stdin {FILE *}
|
|
|
|
macro stdout {FILE *}
|
|
|
|
macro stderr {FILE *}
|
2000-02-23 06:02:09 +00:00
|
|
|
|
|
|
|
type FILE
|
|
|
|
type fpos_t
|
2012-02-26 04:18:39 +00:00
|
|
|
#if !defined ISO && !defined ISO99 && !defined ISO11 && !defined POSIX
|
2000-02-23 06:02:09 +00:00
|
|
|
type va_list
|
2012-02-26 04:18:39 +00:00
|
|
|
#else
|
|
|
|
#define va_list _G_va_list
|
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
type size_t
|
2010-01-09 18:56:41 +00:00
|
|
|
#if defined XOPEN2K8 || defined POSIX2008
|
|
|
|
type off_t
|
2010-01-10 08:39:22 +00:00
|
|
|
type ssize_t
|
2010-01-09 18:56:41 +00:00
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
|
|
|
|
function void clearerr (FILE*)
|
2012-02-26 04:18:39 +00:00
|
|
|
#if !defined ISO && !defined ISO99 && !defined ISO11
|
2000-02-23 06:02:09 +00:00
|
|
|
function {char*} ctermid (char*)
|
2017-04-27 20:29:35 +00:00
|
|
|
# if defined XPG4 || defined XPG42 || defined UNIX98
|
2000-02-23 06:02:09 +00:00
|
|
|
function {char*} cuserid (char*)
|
2012-02-26 04:18:39 +00:00
|
|
|
# endif
|
2010-01-10 08:39:22 +00:00
|
|
|
#endif
|
2010-01-09 18:56:41 +00:00
|
|
|
#if defined XOPEN2K8 || defined POSIX2008
|
|
|
|
function int dprintf (int, const char*, ...)
|
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
function int fclose (FILE*)
|
2016-04-27 21:28:58 +00:00
|
|
|
#if !defined ISO && !defined ISO99 && !defined ISO11
|
2000-02-23 06:02:09 +00:00
|
|
|
function {FILE*} fdopen (int, const char*)
|
2012-02-26 04:18:39 +00:00
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
function int feof (FILE*)
|
|
|
|
function int ferror (FILE*)
|
|
|
|
function int fflush (FILE*)
|
|
|
|
function int fgetc (FILE*)
|
|
|
|
function int fgetpos (FILE*, fpos_t*)
|
|
|
|
function {char*} fgets (char*, int, FILE*)
|
2012-02-26 04:18:39 +00:00
|
|
|
#if !defined ISO && !defined ISO99 && !defined ISO11
|
2000-02-23 06:02:09 +00:00
|
|
|
function int fileno (FILE*)
|
2012-02-26 04:18:39 +00:00
|
|
|
#endif
|
2016-04-27 21:17:00 +00:00
|
|
|
#if defined POSIX || defined UNIX98 || defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008
|
2000-02-23 06:02:09 +00:00
|
|
|
function void flockfile (FILE*)
|
2012-02-26 04:18:39 +00:00
|
|
|
#endif
|
2010-01-09 18:56:41 +00:00
|
|
|
#if defined XOPEN2K8 || defined POSIX2008
|
|
|
|
function {FILE*} fmemopen (void*, size_t, const char*)
|
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
function {FILE*} fopen (const char*, const char*)
|
|
|
|
function int fprintf (FILE*, const char*, ...)
|
|
|
|
function int fputc (int, FILE*)
|
|
|
|
function int fputs (const char*, FILE*)
|
|
|
|
function size_t fread (void*, size_t, size_t, FILE*)
|
|
|
|
function {FILE*} freopen (const char*, const char*, FILE*)
|
|
|
|
function int fscanf (FILE*, const char*, ...)
|
|
|
|
function int fseek (FILE*, long int, int)
|
2016-04-27 21:17:00 +00:00
|
|
|
#if defined UNIX98 || defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008
|
2000-02-23 06:02:09 +00:00
|
|
|
function int fseeko (FILE*, off_t, int)
|
2012-02-26 04:18:39 +00:00
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
function int fsetpos (FILE*, const fpos_t*)
|
|
|
|
function {long int} ftell (FILE*)
|
2016-04-27 21:17:00 +00:00
|
|
|
#if defined UNIX98 || defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008
|
2000-02-23 06:02:09 +00:00
|
|
|
function off_t ftello (FILE*)
|
2012-02-26 04:18:39 +00:00
|
|
|
#endif
|
2016-04-27 21:17:00 +00:00
|
|
|
#if defined POSIX || defined UNIX98 || defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008
|
2000-02-23 06:02:09 +00:00
|
|
|
function int ftrylockfile (FILE*)
|
|
|
|
function void funlockfile (FILE*)
|
2012-02-26 04:18:39 +00:00
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
function size_t fwrite (const void*, size_t, size_t, FILE*)
|
|
|
|
function int getc (FILE*)
|
|
|
|
function int getchar (void)
|
2016-04-27 21:17:00 +00:00
|
|
|
#if defined POSIX || defined UNIX98 || defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008
|
2000-02-23 06:02:09 +00:00
|
|
|
function int getc_unlocked (FILE*)
|
2012-11-19 22:20:44 +00:00
|
|
|
function int getchar_unlocked (void)
|
2012-02-26 04:18:39 +00:00
|
|
|
#endif
|
2010-01-09 18:56:41 +00:00
|
|
|
#if defined XOPEN2K8 || defined POSIX2008
|
|
|
|
function ssize_t getdelim (char**, size_t*, int, FILE*)
|
|
|
|
function ssize_t getline (char**, size_t*, FILE*)
|
|
|
|
#endif
|
2017-04-27 20:29:35 +00:00
|
|
|
#if defined XPG4 || defined XPG42 || defined UNIX98
|
2000-02-23 06:02:09 +00:00
|
|
|
function int getopt (int, char *const[], const char *)
|
2001-01-27 06:42:01 +00:00
|
|
|
#endif
|
2012-02-26 04:18:39 +00:00
|
|
|
#if !defined ISO11
|
2000-02-23 06:02:09 +00:00
|
|
|
function {char*} gets (char*)
|
2012-02-26 04:18:39 +00:00
|
|
|
#endif
|
2017-04-27 20:29:35 +00:00
|
|
|
#if defined XPG4 || defined XPG42 || defined UNIX98
|
2000-02-23 06:02:09 +00:00
|
|
|
function int getw (FILE*)
|
2008-01-16 10:11:18 +00:00
|
|
|
#endif
|
2010-01-09 18:56:41 +00:00
|
|
|
#if defined XOPEN2K8 || defined POSIX2008
|
|
|
|
function {FILE*} open_memstream (char**, size_t*)
|
|
|
|
#endif
|
2012-02-26 04:18:39 +00:00
|
|
|
#if !defined ISO && !defined ISO99 && !defined ISO11
|
2000-02-23 06:02:09 +00:00
|
|
|
function int pclose (FILE*)
|
2012-02-26 04:18:39 +00:00
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
function void perror (const char*)
|
2012-02-26 04:18:39 +00:00
|
|
|
#if !defined ISO && !defined ISO99 && !defined ISO11
|
2000-02-23 06:02:09 +00:00
|
|
|
function {FILE*} popen (const char*, const char*)
|
2012-02-26 04:18:39 +00:00
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
function int printf (const char*, ...)
|
|
|
|
function int putc (int, FILE*)
|
|
|
|
function int putchar (int)
|
2016-04-27 21:17:00 +00:00
|
|
|
#if defined POSIX || defined UNIX98 || defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008
|
2000-02-23 06:02:09 +00:00
|
|
|
function int putc_unlocked (int, FILE*)
|
|
|
|
function int putchar_unlocked (int)
|
2012-02-26 04:18:39 +00:00
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
function int puts (const char*)
|
2017-04-27 20:29:35 +00:00
|
|
|
#if defined XPG4 || defined XPG42 || defined UNIX98
|
2000-02-23 06:02:09 +00:00
|
|
|
function int putw (int, FILE*)
|
2008-01-16 10:11:18 +00:00
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
function int remove (const char*)
|
|
|
|
function int rename (const char*, const char*)
|
2010-01-09 18:56:41 +00:00
|
|
|
#if defined XOPEN2K8 || defined POSIX2008
|
|
|
|
function int renameat (int, const char*, int, const char*)
|
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
function void rewind (FILE*)
|
|
|
|
function int scanf (const char*, ...)
|
|
|
|
function void setbuf (FILE*, char*)
|
|
|
|
function int setvbuf (FILE*, char*, int, size_t)
|
2017-04-27 20:29:35 +00:00
|
|
|
#if !defined ISO && !defined POSIX && !defined XPG4 && !defined XPG42
|
2000-02-23 06:02:09 +00:00
|
|
|
function int snprintf (char*, size_t, const char*, ...)
|
2012-02-26 04:18:39 +00:00
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
function int sprintf (char *, const char *, ...)
|
|
|
|
function int sscanf (const char*, const char*, ...)
|
2017-04-27 20:29:35 +00:00
|
|
|
#if defined XPG4 || defined XPG42 || defined UNIX98 || defined XOPEN2K || defined XOPEN2K8
|
2000-02-23 06:02:09 +00:00
|
|
|
function {char*} tempnam (const char*, const char*)
|
2010-01-09 18:56:41 +00:00
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
function {FILE*} tmpfile (void)
|
|
|
|
function {char*} tmpnam (char*)
|
|
|
|
function int ungetc (int, FILE*)
|
2010-01-09 18:56:41 +00:00
|
|
|
#if defined XOPEN2K8 || defined POSIX2008
|
|
|
|
function int vdprintf (int, const char*, va_list)
|
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
function int vfprintf (FILE*, const char*, va_list)
|
2017-04-27 20:29:35 +00:00
|
|
|
#if !defined ISO && !defined POSIX && !defined XPG4 && !defined XPG42 && !defined UNIX98
|
2001-01-27 06:42:01 +00:00
|
|
|
function int vfscanf (FILE*, const char*, va_list)
|
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
function int vprintf (const char*, va_list)
|
2017-04-27 20:29:35 +00:00
|
|
|
#if !defined ISO && !defined POSIX && !defined XPG4 && !defined XPG42 && !defined UNIX98
|
2001-01-27 06:42:01 +00:00
|
|
|
function int vscanf (const char*, va_list)
|
|
|
|
#endif
|
2017-04-27 20:29:35 +00:00
|
|
|
#if !defined ISO && !defined POSIX && !defined XPG4 && !defined XPG42
|
2000-02-23 06:02:09 +00:00
|
|
|
function int vsnprintf (char*, size_t, const char*, va_list)
|
2012-02-26 04:18:39 +00:00
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
function int vsprintf (char*, const char*, va_list)
|
2017-04-27 20:29:35 +00:00
|
|
|
#if !defined ISO && !defined POSIX && !defined XPG4 && !defined XPG42 && !defined UNIX98
|
2001-01-27 06:42:01 +00:00
|
|
|
function int vsscanf (const char*, const char*, va_list)
|
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
|
2012-11-19 22:20:44 +00:00
|
|
|
#if !defined ISO && !defined ISO99 && !defined ISO11
|
|
|
|
#if !defined POSIX && !defined XOPEN2K && !defined XOPEN2K8 && !defined POSIX2008
|
2000-02-23 06:02:09 +00:00
|
|
|
variable {char*} optarg
|
|
|
|
variable int opterr
|
|
|
|
variable int optind
|
|
|
|
variable int optopt
|
2001-01-27 06:42:01 +00:00
|
|
|
#endif
|
2000-02-23 06:02:09 +00:00
|
|
|
|
2012-11-19 22:20:44 +00:00
|
|
|
#if !defined POSIX
|
2000-02-23 06:02:09 +00:00
|
|
|
allow-header stddef.h
|
2012-11-19 22:20:44 +00:00
|
|
|
#endif
|
Update.
2000-02-27 Ulrich Drepper <drepper@redhat.com>
* conform/conformtest.pl (@headers): Add wordexp.h, wctype.h, wchar.h,
varargs.h, utmpx.h, utime.h, unistd.h, ulimit.h, ucontext.h, time.h,
termios.h, tar.h, sys/wait.h, sys/uio.h, sys/types.h, sys/times.h,
sys/timeb.h, sys/time.h, sys/statvfs.h, sys/stat.h, sys/shm.h,
sys/sem.h, and sys/resource.h.
Implement handling of allow-header.
* conform/data/fcntl.h-data: Correct various bugs.
* conform/data/fnmatch.h-data: Likewise.
* conform/data/math.h-data: Likewise.
* conform/data/ndbm.h-data: Likewise.
* conform/data/nl_types.h-data: Likewise.
* conform/data/poll.h-data: Likewise.
* conform/data/pthread.h-data: Likewise.
* conform/data/semaphore.h-data: Likewise.
* conform/data/setjmp.h-data: Likewise.
* conform/data/signal.h-data: Likewise.
* conform/data/stdarg.h-data: Likewise.
* conform/data/stddef.h-data: Likewise.
* conform/data/stdio.h-data: Likewise.
* conform/data/stdlib.h-data: Likewise.
* conform/data/string.h-data: Likewise.
* conform/data/strings.h-data: Likewise.
* conform/data/stropts.h-data: Likewise.
* conform/data/syslog.h-data: Likewise.
* conform/data/sys/ipc.h-data: Likewise.
* conform/data/sys/mman.h-data: Likewise.
* conform/data/sys/msg.h-data: Likewise.
* conform/data/tar.h-data: New file.
* conform/data/termios.h-data: New file.
* conform/data/time.h-data: New file.
* conform/data/ucontext.h-data: New file.
* conform/data/ulimit.h-data: New file.
* conform/data/unistd.h-data: New file.
* conform/data/utime.h-data: New file.
* conform/data/utmpx.h-data: New file.
* conform/data/varargs.h-data: New file.
* conform/data/wchar.h-data: New file.
* conform/data/wctype.h-data: New file.
* conform/data/wordexp.h-data: New file.
* conform/data/sys/resource.h-data: New file.
* conform/data/sys/sem.h-data: New file.
* conform/data/sys/shm.h-data: New file.
* conform/data/sys/stat.h-data: New file.
* conform/data/sys/statvfs.h-data: New file.
* conform/data/sys/time.h-data: New file.
* conform/data/sys/timeb.h-data: New file.
* conform/data/sys/times.h-data: New file.
* conform/data/sys/types.h-data: New file.
* conform/data/sys/uio.h-data: New file.
* conform/data/sys/wait.h-data: New file.
* grp/grp.h (getgrent_r): Declare only if __USE_GNU.
* include/sys/time.h (__itimes): Fix type of second parameter.
* io/sys/stat.h (S_IFLNK): Define also if __USE_XOPEN.
(S_ISVTX): Likewise.
* io/sys/statvfs.h: Define fsblkcnt_t and fsfilcnt_t.
* locale/langindo.h: Make ERA_YEAR, INT_CURR_SYMBOL, CURRENCY_SYMBOL,
MON_DECIMAL_POINT, MON_THOUSANDS_SEP, MON_GROUPING, POSITIVE_SIGN,
NEGATIVE_SIGN, INT_FRAC_DIGITS, FRAC_DIGITS, P_CS_PRECEDES,
P_SEP_BY_SPACE, N_CS_PRECEDES, N_SEP_BY_SPACE, P_SIGN_POSN,
N_SIGN_POSN, DECIMAL_POINT, THOUSANDS_SEP, GROUPING, YESEXPR,
NOEXPR, YESSTR, and NOSTR only available if __USE_GNU.
* math/bits/mathcalls.h: Don't declare tgamma and scalbn if only
__USE_XOPEN.
* posix/unistd.h: Don't define ptrdiff_t.
(sbrk): Correct type of parameter.
* sysdeps/generic/sbrk.c: Likewise.
* sysdeps/mach/hurd/sbrk.c: Likewise.
* posix/sys/types.h: Allow id_t, suseconds_t, fsblkcnt_t, and
fsfilcnt_t being defined elsewhere.
* resource/sys/resource.h: Define id_t.
If __USE_XOPEN use int for type of first parameter if getrlimit,
getrlimit64, setrlimit, setrlimit64, getrusage, getpriority, and
setpriority.
* sysdeps/generic/getpriority.c: Fix type of second parameter.
* sysdeps/generic/setpriority.c: Likewise.
* sysdeps/mach/hurd/getpriority.c: Likewise.
* sysdeps/mach/hurd/setpriority.c: Likewise.
* sysdeps/unix/sysv/irix4/getpriority.c: Likewise.
* sysdeps/unix/sysv/irix4/setpriority.c: Likewise.
* sysdeps/unix/sysv/linux/getpriority.c: Likewise.
* sysdeps/generic/utimes.c: Fix parameter of third parameter.
* sysdeps/mach/hurd/utimes.c: Likewise.
* sysdeps/posix/utimes.c: Likewise.
* sysdeps/generic/bits/shm.h: Define shmatt_t type and use it in
struct shmid_ds definition.
* sysdeps/gnu/bits/shm.h: Likewise.
* sysdeps/unix/sysv/linux/alpha/bits/shm.h: Likewise.
* sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
* sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
* sysvipc/sys/shm.h: Define time_t.
* sysvipc/sys/sem.h (struct sembuf): Make sem_num field unsigned.
* sysdeps/gnu/bits/sem.h: Rename anonymous type struct sem_queue and
struct sem_undo to struct __sem_queue and struct __sem_undo resp.
* time/time.h: Define suseconds_t if not already done.
* sysdeps/unix/sysv/linux/bits/statvfs.h: Rename f_spare to __f_spare.
* sysdeps/unix/sysv/linux/fstatvfs64.c: Likewise.
* sysdeps/unix/sysv/linux/statvfs64.c: Likewise.
* sysdeps/unix/sysv/linux/internal_statvfs.c: Likewise.
* intl/bindtextdom.c: Use rwlock to avoid surprising results in
multithreaded applications.
* intl/dcigettext.c: Likewise.
* intl/textdomain.c: Likewise.
* intl/*.c: Update copyright.
* sysdeps/generic/bits/libc-lock.h: Define __libc_rwlock_* stubs.
2000-02-27 Andreas Jaeger <aj@suse.de>
* sysdeps/unix/sysv/linux/configure.in: Treat also "/usr/" as
prefix especially.
2000-02-27 Ulrich Drepper <drepper@redhat.com>
* po/de.po: Update from translation team.
* po/ko.po: Likewise.
2000-02-28 05:08:01 +00:00
|
|
|
|
|
|
|
allow *_t
|
2000-02-23 06:02:09 +00:00
|
|
|
#endif
|