summaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
1998-09-15Remove the public declaration of gtime(), which is shipped with tzcode but iskleink
not compiled into our libc since it is intended for use with Mach only.
1998-09-14__RENAME() the libcompat regexp routines so they will not be used bytv
programs that want -lcompat but use POSIX regex. Inspired by <david@mono.org> in PR bin/1849.
1998-09-14Fix typo in previous, and also don't version _setjmp/_longjmp; afterthorpej
more careful analysis, I realized that they don't access the extended jmp_buf data area, and thus would not have changed.
1998-09-14Version setjmp(), longjmp(), _setjmp(), _longjmp(), sigsetjmp(), andthorpej
siglongjmp(). The size of struct sigcontext, and thus the size of jmp_buf and sigjmp_buf on some platforms, has changed.
1998-09-13__LIBCxx_SOURCE__ refers to the library major number, not the NetBSD releasethorpej
number.
1998-09-12Minor KNFing.mycroft
1998-09-12Do the syscall versioning.mycroft
1998-09-10Declare asctime_r(), ctime_r(), gmtime_r() and localtime_r(), and rearrangekleink
name space protection a bit.
1998-09-07Oops, isinf() was never included in any X/Open interface specification.kleink
1998-09-05Assign my copyright to the TNF.pk
1998-09-05Assign my copyrights to TNF.pk
1998-08-28Use __format__, __printf__ for consistencytv
1998-08-28add asprintf and vasprintf, originally written by Todd Miller for OpenBSDperry
1998-08-03Per XSH5, define _XOPEN_IOV_MAX.kleink
1998-07-30Merge in recent changes from the private version of this header distributedkleink
with tzcode.
1998-07-30__Namespace__ __protection__.mycroft
1998-07-28Add gid_from_group() and uid_from_user().mycroft
1998-07-28Sprinkle in some __attribute__((noreturn))s.mycroft
1998-07-27Actually, FreeBSD calls this mkdtemp(). No point in creating a new name.mycroft
1998-07-27Add a mktempdir(), like mkstemp(), but it creates a directory.mycroft
1998-07-27Nuke tmpnam() as well.mycroft
1998-07-27YP status codes are all unsigned.mycroft
1998-07-27Slight rearrangement.mycroft
1998-07-27Need cdefs.h.mycroft
1998-07-27If __AUDIT__ is defined, remove some traditional interfaces: gets, sprintf,mycroft
vsprintf, tempnam, mktemp, getwd.
1998-07-27Mark more functions returning internal buffers for const auditing.mycroft
1998-07-27Make many of the new consts dependent on a new `__AUDIT__' flag, to avoidmycroft
breaking third party software. *sigh*
1998-07-26const poisoning.mycroft
1998-07-26const poisoning.mycroft
1998-07-26KNF nit.mycroft
1998-07-26const poisoning.mycroft
1998-07-26const poisoning.mycroft
1998-07-26const poisoning.mycroft
1998-07-26const poisoning.mycroft
1998-07-26const poisoning.mycroft
1998-07-26const poisoning.mycroft
1998-07-26Oops; that wasn't quite right.mycroft
1998-07-26const poisoning.mycroft
1998-07-26const poisoning.mycroft
1998-07-26const poisoning.mycroft
1998-07-26const poisoning.mycroft
1998-07-26const poisoning.mycroft
1998-07-14Change ld.so default behavior to RTLD_LOCAL, and make RTLD_LOCAL into atv
new flag bit. Keep RTLD_GLOBAL as an actual flag bit so it won't be re-used, or may be used for something later. Mask the dlopen() mode bits in ld.elf_so so a comparison against RTLD_NOW works. (RTLD_{LOCAL,GLOBAL} needs to be implemented for ld.elf_so.)
1998-07-08For the sake of XPG3 and later, provide TMP_MAX; consistent with the defintionkleink
in <stdio.h>. Also, rearrange name space protection a bit.
1998-07-02Addendum to previous change: since pread()'s and pwrite()'s first officialkleink
appearance was in X/Open CAE Spec Issue 5 Version 2, add a section for that and move the prototypes there.
1998-06-30Prototype pread(2) and pwrite(2) if !defined(_POSIX_C_SOURCE).thorpej
1998-06-22pid/gid is not int but pid_t/gid_t (u_int32_t (unsigned!)).msaitoh
1998-06-22Typo: POSXI -> POSIX.tv
Re-add GLOB_QUOTE and GLOB_ABEND bracketed by standards ifs for source compatibility.
1998-06-19* Remove GLOB_QUOTE, add GLOB_NOESCAPE. Per POSIX, backslash quoting ofkleink
special characters is the default behaviour, which may be disabled by setting GLOB_NOESCAPE. * Add GLOB_NOMATCH, which will be returned if no matching pathnames have been found and GLOB_NOCHECK was not set. * Add GLOB_NOSYS for completeness; it will never happen.
1998-06-08move pw_scan from util.h to pwd.h, add _PASSWORD_{OLDFMT,NOWARN} flagslukem