glibc/posix
Joseph Myers 80d9be8122 Convert miscellaneous function definitions to prototype style.
This patch converts various miscellaneous functions definitions in
glibc, found with grep and not covered by my previous scripted
conversions, from old-style K&R to prototype-style.  These changes
were made manually.  This is not necessarily exhaustive as formatting
variants may have prevented my grep from finding some such
definitions.

Regarding the changes to files from GMP, they may originally have been
omitted when removing __STDC__ conditionals because of the files
coming from another package, but (a) GMP no longer has __STDC__
conditionals there anyway and (b) we don't try to keep these files
verbatim in sync with GMP (and there are licensing differences), so
making the change to them in glibc seems reasonable.

Tested for x86_64 and x86 (testsuite - this patch affects files
containing assertions).

	* debug/fortify_fail.c (__fortify_fail): Convert to
	prototype-style function definition.  Use internal_function.
	* libio/genops.c (save_for_backup): Convert to prototype-style
	function definition.
	* libio/wgenops.c (save_for_wbackup): Likewise.
	* login/grantpt.c (grantpt): Likewise.
	* login/ptsname.c (ptsname): Likewise.
	(__ptsname_r): Likewise.
	* login/unlockpt.c (unlockpt): Likewise.
	* mach/msgserver.c (__mach_msg_server): Likewise.
	* misc/efgcvt.c (__APPEND (FUNC_PREFIX, fcvt)): Likewise.
	(__APPEND (FUNC_PREFIX, ecvt)): Likewise.
	(__APPEND (FUNC_PREFIX, gcvt)): Likewise.
	* misc/efgcvt_r.c (__APPEND (FUNC_PREFIX, fcvt_r)): Likewise.
	(__APPEND (FUNC_PREFIX, ecvt_r)): Likewise.
	* nptl/cleanup_compat.c (_pthread_cleanup_push): Likewise.
	* nptl/cleanup_defer_compat.c (_pthread_cleanup_push_defer):
	Likewise.
	* nptl/libc_pthread_init.c (__libc_pthread_init): Likewise.  Use
	internal_function.
	* nptl/pthread_atfork.c (__pthread_atfork): Convert to
	prototype-style function definition.
	* nptl/pthread_create.c (__pthread_create_2_1): Likewise.
	[SHLIB_COMPAT(libpthread, GLIBC_2_0, GLIBC_2_1)]
	(__pthread_create_2_0): Likewise.
	* nptl/pthread_key_create.c (__pthread_key_create): Likewise.
	* nptl/register-atfork.c (__register_atfork): Likewise.
	* posix/glob.c (glob): Likewise.
	* posix/regcomp.c (re_comp): Likewise.
	* posix/regexec.c (re_exec): Likewise.
	* stdlib/add_n.c [__STDC__]: Make code unconditional.
	[!__STDC__]: Remove conditional code.
	* stdlib/cmp.c [__STDC__]: Make code unconditional.
	[!__STDC__]: Remove conditional code.
	* stdlib/divmod_1.c [__STDC__]: Make code unconditional.
	[!__STDC__]: Remove conditional code.
	* stdlib/divrem.c [__STDC__]: Make code unconditional.
	[!__STDC__]: Remove conditional code.
	* stdlib/lshift.c [__STDC__]: Make code unconditional.
	[!__STDC__]: Remove conditional code.
	* stdlib/mod_1.c [__STDC__]: Make code unconditional.
	[!__STDC__]: Remove conditional code.
	* stdlib/mul.c [__STDC__]: Make code unconditional.
	[!__STDC__]: Remove conditional code.
	* stdlib/mul_n.c [__STDC__]: Make code unconditional.
	[!__STDC__]: Remove conditional code.
	* stdlib/rshift.c [__STDC__]: Make code unconditional.
	[!__STDC__]: Remove conditional code.
	* stdlib/strtod.c (INTERNAL (STRTOF)): Convert to prototype-style
	function definition.
	(STRTOF): Likewise.
	* stdlib/strtod_l.c (__STRTOF): Likewise.
	* stdlib/strtol.c (INTERNAL (strtol)): Likewise.
	* stdlib/strtol_l.c (INTERNAL (__strtol_l)): Likewise.
	(__strtol_l): Likewise.
	* stdlib/sub_n.c [__STDC__]: Make code unconditional.
	[!__STDC__]: Remove conditional code.
	* string/memrchr.c (MEMRCHR): Convert to prototype-style function
	definition.
	* string/strcasecmp.c (LOCALE_PARAM_DECL): Remove macro.
	[USE_IN_EXTENDED_LOCALE_MODEL] (LOCALE_PARAM): Include argument
	type.
	(__strcasecmp): Convert to prototype-style function definition.
	* string/strncase.c (LOCALE_PARAM_DECL): Remove macro.
	[USE_IN_EXTENDED_LOCALE_MODEL] (LOCALE_PARAM): Include argument
	type.
	(__strncasecmp): Convert to prototype-style function definition.
	* sunrpc/pm_getport.c (__libc_rpc_getport): Likewise.
	* sunrpc/xdr.c (xdr_union): Likewise.
	* sunrpc/xdr_array.c (xdr_array): Likewise.
	* sunrpc/xdr_ref.c (xdr_reference): Likewise.
	* sysdeps/m68k/m680x0/fpu/s_atan.c (__CONCATX(__,FUNC)): Likewise.
	* sysdeps/m68k/m680x0/fpu/s_isinf.c (__CONCATX(__,FUNC)):
	Likewise.
	* sysdeps/m68k/m680x0/fpu/s_scalbn.c (__CONCATX(__scalbn,suffix):
	Likewise.
	* sysdeps/m68k/m680x0/fpu/s_sincos.c (CONCATX(__,FUNC)): Likewise.
	* sysdeps/unix/sysv/linux/i386/scandir64.c (__old_scandir64):
	Likewise.
	* time/strftime_l.c (LOCALE_PARAM_DECL): Remove macro.
	(LOCALE_PARAM_PROTO): Likewise.
	[_LIBC && USE_IN_EXTENDED_LOCALE_MODEL] (LOCALE_PARAM): Include
	argument type.
	(ut_argument_spec): Remove macro.
	(ut_argument_spec_iso): Rename to ut_argument_spec.
	(memcpy_lowcase): Use LOCALE_PARAM in declaration.  Convert to
	prototype-style function definition.
	(memcpy_uppcase): Likewise.
	(__strftime_internal): Likewise.
	(my_strftime): Likewise.
	* time/strptime_l.c (LOCALE_PARAM_PROTO): Remove macro.
	(LOCALE_PARAM_DECL): Likewise.
	[_LIBC] (LOCALE_PARAM): Include argument type.
	(__strptime_internal): Convert to prototype-style function
	definition.
	(strptime): Likewise.
	* wcsmbs/wcscasecmp.c (LOCALE_PARAM_DECL): Remove macro.
	[USE_IN_EXTENDED_LOCALE_MODEL] (LOCALE_PARAM): Include argument
	type.
	(__wcscasecmp): Convert to prototype-style function definition.
	* wcsmbs/wcsncase.c (LOCALE_PARAM_DECL): Remove macro.
	[USE_IN_EXTENDED_LOCALE_MODEL] (LOCALE_PARAM): Include argument
	type.
	(__wcsncasecmp): Convert to prototype-style function definition.
2015-10-20 21:27:22 +00:00
..
bits Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
rxspencer
sys Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
_exit.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
alarm.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
annexc.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
BOOST.tests
bsd-getpgrp.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-ga1.c
bug-ga2.c
bug-getopt1.c Add tests for recent getopt changes. 2010-04-07 22:59:40 -07:00
bug-getopt2.c Add tests for recent getopt changes. 2010-04-07 22:59:40 -07:00
bug-getopt3.c Add tests for recent getopt changes. 2010-04-07 22:59:40 -07:00
bug-getopt4.c Add tests for recent getopt changes. 2010-04-07 22:59:40 -07:00
bug-getopt5.c Add tests for recent getopt changes. 2010-04-07 22:59:40 -07:00
bug-glob1.c
bug-glob2.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-glob3.c Add test for last glob bug. 2010-03-24 12:10:51 -07:00
bug-regex1.c
bug-regex2.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex3.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex4.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex5.c Add #include <stdint.h> for uint[32|64]_t usage (except installed headers). 2013-05-16 11:32:54 -05:00
bug-regex6.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex7.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex8.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex9.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex10.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex11.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex12.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex13.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex14.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex15.c
bug-regex16.c
bug-regex17.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex18.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex19.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex20.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex21.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex22.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex23.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex24.c
bug-regex25.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex26.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex27.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex28.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex29.c Add missing stdio.h include. 2009-11-14 19:11:44 -08:00
bug-regex30.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex31.c Fix warning in posix/bug-regex31.c. 2014-11-25 21:40:51 +00:00
bug-regex31.input One more regex memory leak fixed. 2010-10-12 09:00:33 -04:00
bug-regex32.c Fix unnecessary overallocation due to incomplete character 2011-05-28 17:14:30 -04:00
bug-regex33.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex34.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex35.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
bug-regex36.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
confstr.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
cpio.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
Depend
environ.c
execl.c Add missing va_end calls (bug 17243) 2015-09-16 14:51:28 +02:00
execle.c Add missing va_end calls (bug 17243) 2015-09-16 14:51:28 +02:00
execlp.c Add missing va_end calls (bug 17243) 2015-09-16 14:51:28 +02:00
execv.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
execve.c Convert 24 more function definitions to prototype style (array parameters). 2015-10-20 11:51:03 +00:00
execvp.c Convert 24 more function definitions to prototype style (array parameters). 2015-10-20 11:51:03 +00:00
execvpe.c Convert 24 more function definitions to prototype style (array parameters). 2015-10-20 11:51:03 +00:00
fexecve.c Convert 24 more function definitions to prototype style (array parameters). 2015-10-20 11:51:03 +00:00
fnmatch_loop.c Convert 113 more function definitions to prototype style (files with assertions). 2015-10-20 11:54:09 +00:00
fnmatch.c Convert 113 more function definitions to prototype style (files with assertions). 2015-10-20 11:54:09 +00:00
fnmatch.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fork.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
fpathconf.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
gai_strerror.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
gai.conf [BZ #11438] 2012-09-28 10:15:05 -06:00
get_child_max.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getaddrinfo.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getconf-speclist.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getconf.c Update copyright dates not handled by scripts/update-copyrights. 2015-01-02 16:54:45 +00:00
getegid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
geteuid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getgid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getgroups.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
getopt1.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getopt_init.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getopt_int.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getopt.c Fix open_memstream namespace (bug 18498). 2015-06-05 23:32:46 +00:00
getopt.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getpgid.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
getpgrp.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getpid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getppid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getresgid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getresuid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getsid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
getuid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
glob64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
glob.c Convert miscellaneous function definitions to prototype style. 2015-10-20 21:27:22 +00:00
glob.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
globtest.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
globtest.sh Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
group_member.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
init-posix.c
Makefile Do not use -Wno-strict-prototypes. 2015-10-19 21:24:50 +00:00
nanosleep.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
pathconf.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
pause.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
PCRE.tests
posix_madvise.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
posix-conf-vars.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
posix-conf-vars.list Use posix-conf-vars.list to generate spec array 2014-12-29 19:56:27 +05:30
posix-envs.def Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
pread64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
pread.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
ptestcases.h
PTESTS
PTESTS2C.sed
pwrite64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
pwrite.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
re_comp.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
regcomp.c Convert miscellaneous function definitions to prototype style. 2015-10-20 21:27:22 +00:00
regex_internal.c Fix regex wcrtomb namespace (bug 18496). 2015-06-05 21:31:39 +00:00
regex_internal.h Move bits/libc-lock.h and bits/libc-lockP.h out of bits/ (bug 14912). 2015-09-08 21:11:03 +00:00
regex.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
regex.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
regexbug1.c Fix -Wformat-security warnings in posix/regexbug1.c 2014-12-11 13:08:26 -08:00
regexec.c Convert miscellaneous function definitions to prototype style. 2015-10-20 21:27:22 +00:00
runptests.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
runtests.c
sched_cpualloc.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sched_cpucount.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sched_cpufree.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sched_getaffinity.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
sched_getp.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sched_gets.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sched_primax.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sched_primin.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sched_rr_gi.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sched_setaffinity.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
sched_setp.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sched_sets.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sched_yield.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sched.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setgid.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
setpgid.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
setpgrp.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setresgid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setresuid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setsid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
setuid.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
sleep.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
spawn_faction_addclose.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawn_faction_adddup2.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawn_faction_addopen.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawn_faction_destroy.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawn_faction_init.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawn_int.h posix_spawn_file_actions_addopen needs to copy the path argument (BZ 17048) 2014-06-11 23:13:42 +02:00
spawn.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawn.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawnattr_destroy.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawnattr_getdefault.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawnattr_getflags.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawnattr_getpgroup.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawnattr_getschedparam.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawnattr_getschedpolicy.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawnattr_getsigmask.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawnattr_init.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawnattr_setdefault.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawnattr_setflags.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawnattr_setpgroup.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawnattr_setschedparam.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawnattr_setschedpolicy.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawnattr_setsigmask.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawni.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
spawnp.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
sysconf.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
tar.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
test-vfork.c Use (void) in no-arguments function definitions. 2013-06-08 00:22:23 +00:00
testcases.h
testfnm.c FIx handling of unterminated [ expression in fnmatch. 2011-01-14 08:06:22 -05:00
TESTS
TESTS2C.sed
times.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
transbug.c Fix executable mode. 2013-06-06 02:15:33 +02:00
tst-boost.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-chmod.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-cpucount.c When iterating over CPU bitmask, don't try more than CPU_SETSIZE. 2009-06-15 21:12:57 -07:00
tst-cpuset.c
tst-dir.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-exec-static.c Support run tst-exec and tst-spawn directly 2013-01-10 14:14:55 -08:00
tst-exec.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-execl1.c
tst-execl2.c
tst-execle1.c
tst-execle2.c
tst-execlp1.c
tst-execlp2.c
tst-execv1.c
tst-execv2.c
tst-execve1.c
tst-execve2.c
tst-execvp1.c
tst-execvp2.c
tst-execvp3.c
tst-execvp4.c
tst-fnmatch2.c FIx handling of unterminated [ expression in fnmatch. 2011-01-14 08:06:22 -05:00
tst-fnmatch3.c Fix BZ 18036 buffer overflow (read past end of buffer) in internal_fnmatch 2015-03-02 13:34:22 -08:00
tst-fnmatch.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-fnmatch.input Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-fork.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-getaddrinfo2.c
tst-getaddrinfo3.c
tst-getaddrinfo4.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-getaddrinfo5.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-getaddrinfo.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-getconf.sh fix non-portable echo -n usage 2015-08-09 04:19:12 -04:00
tst-getopt_long1.c Fix warning in posix/tst-getopt_long1.c. 2014-12-02 22:03:59 +00:00
tst-gnuglob.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-mmap-offset.c Fix wordsize-32 mmap offset for negative value (BZ#18877) 2015-08-28 10:42:07 -03:00
tst-mmap.c Modify several tests to use test-skeleton.c 2014-11-05 15:24:08 +05:30
tst-nanosleep.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-nice.c Fix BZ #18086 -- nice resets errno to 0. 2015-08-11 23:40:00 -07:00
tst-pathconf.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-pcre.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-preadwrite64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-preadwrite.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-regex2.c
tst-regex.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-regexloc.c Modify several tests to use test-skeleton.c 2015-08-06 02:59:04 -04:00
tst-rfc3484-2.c Fix qsort_r namespace (bug 17571). 2014-11-12 22:33:41 +00:00
tst-rfc3484-3.c Fix qsort_r namespace (bug 17571). 2014-11-12 22:33:41 +00:00
tst-rfc3484.c Fix qsort_r namespace (bug 17571). 2014-11-12 22:33:41 +00:00
tst-rxspencer-no-utf8.c Split up rules for tests using mtrace and something else. 2014-02-14 13:45:14 +00:00
tst-rxspencer.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-spawn-static.c Support run tst-exec and tst-spawn directly 2013-01-10 14:14:55 -08:00
tst-spawn.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-sysconf.c Hurd: Update posix_opt.h 2012-05-10 15:57:27 -07:00
tst-truncate64.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-truncate.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-vfork1.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-vfork2.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-vfork3.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tst-waitid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
tstgetopt.c
uname-values.h NaCl: Provide non-default values for uname. 2015-05-12 10:54:47 -07:00
uname.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
unistd.h Restore _POSIX2_C_VERSION definition (bug 438). 2015-05-22 17:14:04 +00:00
Versions Fix aio_* pread namespace (bug 18519). 2015-06-12 17:34:11 +00:00
vfork.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
wait3.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
wait4.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
wait.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
wait.h
waitid.c Convert 703 function definitions to prototype style. 2015-10-16 20:21:49 +00:00
waitpid.c Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
wordexp-test.c Avoid SIGFPE in wordexp [BZ #18100] 2015-03-23 16:12:38 +01:00
wordexp-tst.sh Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00
wordexp.c Use __pthread_setcancelstate in libc.a 2015-09-17 16:38:54 -07:00
wordexp.h Update copyright dates with scripts/update-copyrights. 2015-01-02 16:29:47 +00:00