nt='cgit '/>
summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/reallocarray.c
AgeCommit message (Collapse)Author
2021-02-26arrange for tools buildchristos
2018-01-04Add bunch of missing includes of namespace.h in libckamil
The NetBSD Standard C Library uses internally some of its functions with a mangled symbol name, usually "_symbol". The internal functions shall not use the global (public) symbols. This change eliminates usage of the global changes of the following symbols: - strlcat -> _strlcat - sysconf -> __sysconf - closedir -> _closedir - fparseln -> _fparseln - kill -> _kill - mkstemp -> _mkstemp - reallocarr -> _reallocarr - strcasecmp -> _strcasecmp - strncasecmp -> _strncasecmp - strptime -> _strptime - strtok_r -> _strtok_r - sysctl -> _sysctl - dlopen -> __dlopen - dlclose -> __dlclose - dlsym -> __dlsym Sponsored by <The NetBSD Foundation>
2017-10-07remove recallocarraychristos
2017-10-07add recallocarraychristos
2016-04-06Revert prior, no idea why it was causing me problems, but it no longer does.roy
2016-04-05Stop calling reallocarr and just do the same bounds checking but withoutroy
messing around with copying pointers which was causing ssh to crash.
2015-07-26reallocarray(3) cleanupkamil
Add missing NetBSD CVS Id Don't define twice _OPENBSD_SOURCE
2015-03-10Behave in an OpenBSD compatible way for 0.christos
2015-02-17use reallocarr()christos
2015-02-17Move reallocarray under _OPENBSD_SOURCE where it belongs.joerg
2015-02-05Add and use reallocarray() to prevent a multiplication overflow in allocation.christos
Reported by Guido Vranken, thanks!