summaryrefslogtreecommitdiffstats
path: root/lib/libc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update to match realtiy.art2001-11-061-5/+4
|
* No need to include vm/vm_param.h here, sys/sysctl.h does that for us.art2001-11-051-2/+1
|
* Comment out info on U (utrace) malloc option since we don't support itmillert2001-11-051-8/+8
| | | | on OpenBSD.
* Some examples of how to use syslog_r() and why it is useful. deraadt@ ok.jjbg2001-11-051-1/+18
|
* poll(2) manpage references itself, accept(2) references poll(2) twice.jj2001-11-022-4/+2
|
* much greater care for malloc & realloc failures; millert okderaadt2001-11-011-16/+37
|
* use _C_LABELmickey2001-11-012-10/+10
|
* remove dangling spaces and tabsmickey2001-11-011-16/+16
|
* Set default facility is noone is specified at syslog(3) time; millert@ jj@ ok.fgsch2001-10-311-16/+20
|
* Add MLINK's for syslog_r and friends.fgsch2001-10-311-2/+3
|
* Grammar. Thanks markus@tdeval2001-10-301-2/+2
|
* mprotect allocations sized at 0 bytes. This will cause a fault for accesstdeval2001-10-303-38/+51
| | | | | to such, permitting them to be discovered, instead of exploited as the ssh crc insertion detector was. Idea by theo, written by tdeval.
* correct realloc() misusederaadt2001-10-301-3/+9
|
* fix docs; tedu@heorot.stanford.eduderaadt2001-10-291-7/+3
|
* add RFC 3174 to SEE ALSO sectionmillert2001-10-291-1/+6
|
* run the approve for accounts with expiration time, too. ok millert@markus2001-10-261-2/+2
|
* detail the different protections in mprotect(2) man page and add PROT_NONEjjbg2001-10-242-2/+21
| | | | in mmap(2) man page. deraadt@ ok.
* syslog_r() implementation. deraadt@ ok.jjbg2001-10-243-102/+276
|
* fix __PSEUDO_NOERROR, two waysmickey2001-10-241-20/+23
|
* Disable fd sharing for this release. Sorry.art2001-10-141-1/+6
| | | | deraadt@ ok.
* Correct length of jmpbuf, it is sizeof(long) * _JBLEN == 8*14millert2001-10-111-5/+5
| | | | This fixes sigsetjmp()/siglongjmp() on sparc64
* sync with rmd160.hmarkus2001-10-011-4/+4
|
* typomillert2001-10-011-2/+2
|
* new rmd160 implementation. based onmarkus2001-10-013-402/+342
| | | | ftp://ftp.rsasecurity.com/pub/cryptobytes/crypto3n2.pdf, ok deraadt@
* Move return value info into its own "RETURN VALUES" section.millert2001-09-291-6/+11
|
* Changes to SYS.h for sparc64 to make it work with libc_rdrahn2001-09-261-16/+41
| | | | bulk of work done by miod.
* Revert last. The ERROR() macro is called from leaf functionsart2001-09-261-2/+6
| | | | and is _not_ supposed to do "call"s.
* Forgotten DEBUGLIBS stuffniklas2001-09-251-1/+8
|
* Also build the .so version of sha1 without optimization.drahn2001-09-251-1/+3
| | | | ok jason@
* Add an ASPICFLAG variable to bsd.own.mk which a platform use to pass flagsdrahn2001-09-252-10/+9
| | | | | | | to 'as' to make it compile pic. add defaults for sparc64 which needs picflags set to -fPIC and ASPICFLAGS to -KPIC. Also simplifies the systemcall generation for sparc64 PIC mode. ok epsie@.
* get previous right...jason2001-09-241-2/+2
|
* add hack for sha1.po on sparc64, toojason2001-09-241-1/+4
|
* Rename __minbrk to minbrk to allow gmon.c to link correctly.art2001-09-241-6/+6
| | | | | XXX - The fix should be the other way around - make all other archs match sparc64.
* Better wordingespie2001-09-242-12/+12
|
* o kill some extra whitespacemillert2001-09-221-92/+81
| | | | | | | | | | | | | o remove remaining strcpy()s to avoid false positives when auditing o fix by one in a malloc() size param o fix buffer overflow in cgetnext() reported by Jouko Pynnonen o avoid needlessly setting errno to ENOMEM and when we *do* set it be sure to do so right before the return() o check snprintf() return value when building up a .db pathname and fall back to the text version if it the .db path is too long. o add a missing check for malloc() return value o kill register o memmove(), not bcopy()
* Typo: tempfile ==> tempnam.heko2001-09-221-2/+2
| | | | ok millert@
* Typo; grange@rt.mipt.ruaaron2001-09-211-2/+2
|
* add isnan.cmiod2001-09-211-1/+2
|
* Fix incorrect number of args to __SYSCALL. Somehow this managed tomillert2001-09-211-9/+5
| | | | | work in my test on static libs -- I've no idea how though. While I'm here, remove __RSYSCALL since it is the same as __PSEUDO.
* change PSEUDO_NOERROR so it is indeed does not set errno.drahn2001-09-201-3/+3
|
* Add PSEUDO_NOERROR similar to that used by NetBSD.millert2001-09-2011-81/+194
| | | | | | | | | | | Some ports were setting errno in PSEUDO and some were not. Now errno is set for all in PSEUDO and PSEUDO_NOERROR is provided for the non-errno case (only used by _exit). Needs testing on vax and m88k. XXX - hppa and powerpc still lack a real PSEUDO_NOERROR implementation. Currently PSEUDO_NOERROR and PSEUDO are the same (so builds don't break on those platforms).
* make this compile for kernelmickey2001-09-201-4/+4
|
* cast a few more long's to int32_tjason2001-09-172-6/+6
|
* It is not legal to have multiple .%T entries in a reference so splitmillert2001-09-161-7/+20
| | | | | the manual references up. This is still not as nice as it could be but at least groff no longer spits out an error.
* return 0, not NULL, the function returns an intart2001-09-161-3/+3
|
* prototype cleanupderaadt2001-09-1528-412/+407
|
* add "options insecure[12]" support for /etc/resolv.conf.itojun2001-09-142-5/+10
| | | | | | insecure1 is necessary for IPv6 dynamic DNS server discovery, draft-ietf-ipngwg-dns-discovery-02.txt. sync with kame. ok'ed by angelos
* Keep the strings fully quoted.drahn2001-09-111-2/+2
|
* repair getgrgid_r() and getgrnam_r() as the standart says; from d@pvalchev2001-09-111-32/+83
|
* Use the LBL isnan() and isinf() on all platforms with ieee floating point.millert2001-09-1021-169/+356
|