OpenBSD release(s):
1.78 (79 78 77 76),
1.77 (75),
1.76 (74 73 72 71 70 69 68 67 66),
1.75 (65),
1.72 (64 63 62),
1.68 (61),
1.65 (60 59 58),
1.64 (57),
1.59 (56),
1.56 (55),
1.52 (54),
1.51 (53),
1.50 (52),
1.49 (51 50),
1.47 (49 48),
1.46 (47 46),
1.45 (45),
1.44 (44),
1.40 (43),
1.39 (42 41),
1.38 (40),
1.37 (39),
1.34 (38),
1.32 (37 36),
1.29 (35),
1.28 (34),
1.24 (33),
1.20 (32),
1.19 (31),
1.13 (30),
1.12 (29 28 27),
1.10 (26),
1.9 (25),
1.7 (24 23),
1.4 (22),
1.3 (21),
1.2 (20),
Tags:
1.1.1.1 (netbsd_1_1),
revision 1.78/
(Download) -
annotate -
Sat, 03 Aug 2024 20:09:24 UTC by guenther
OpenBSD release(s): 79 78 77 76
Changes since 1.77:
+4 -4
(diff)
mkostemp(3) and reallocarray(3) are in POSIX-2024:
adjust #include visibility and update the reallocarray(3) manpage
ok millert@
revision 1.77/
(Download) -
annotate -
Fri, 01 Mar 2024 21:30:40 UTC by millert
OpenBSD release(s): 75
Changes since 1.76:
+2 -1
(diff)
Add mkdtemps(3), like mkdtemp(3) but with a suffix.
OK deraadt@ tb@
revision 1.76/
(Download) -
annotate -
Fri, 10 May 2019 15:03:24 UTC by otto
OpenBSD release(s): 74 73 72 71 70 69 68 67 66
Changes since 1.75:
+3 -1
(diff)
Inroduce malloc_conceal() and calloc_conceal(). Similar to their
counterparts but return memory in pages marked MAP_CONCEAL and on
free() freezero() is actually called.
revision 1.75/
(Download) -
annotate -
Wed, 21 Nov 2018 06:57:04 UTC by otto
OpenBSD release(s): 65
Changes since 1.74:
+1 -2
(diff)
Introducing malloc_usable_size() was a mistake. While some other
libs have it, it is a function that is considered harmful, so:
Delete malloc_usable_size(). It is a function that blurs the line
between malloc managed memory and application managed memory and
exposes some of the internal workings of malloc. If an application
relies on that, it is likely to break using another implementation
of malloc. If you want usable size x, just allocate x bytes. ok
deraadt@ and other devs
revision 1.74/
(Download) -
annotate -
Sun, 18 Nov 2018 16:15:18 UTC by otto
Changes since 1.73:
+2 -1
(diff)
Implement malloc_usable_size(); ok millert@ deraadt@ and jmc@ for the man page
revision 1.73/
(Download) -
annotate -
Mon, 05 Nov 2018 08:23:40 UTC by otto
Changes since 1.72:
+6 -1
(diff)
Implement C11's aligned_alloc(3). ok guenther@
revision 1.72/
(Download) -
annotate -
Tue, 05 Sep 2017 03:16:13 UTC by schwarze
OpenBSD release(s): 64 63 62
Changes since 1.71:
+3 -4
(diff)
New POSIX xlocale implementation written from scratch.
Complete in the sense that all POSIX *locale(3) and *_l(3) functions
are included, but in OpenBSD, we of course only really care about
LC_CTYPE and we only support ASCII and UTF-8.
With important help from kettenis@, guenther@, and jca@.
Repeated testing in ports bulk builds by naddy@.
Additional testing by jca@, sebastia@, dcoppa@, and others.
OK kettenis@ dcoppa@, and guenther@ on an earlier version.
Riding guenther@'s libc/librthread major bump.
revision 1.71/
(Download) -
annotate -
Thu, 11 May 2017 11:52:18 UTC by tom
Changes since 1.70:
+2 -2
(diff)
arc4random_buf should be bounded buffer, not bounded string
ok millert@
revision 1.70/
(Download) -
annotate -
Wed, 10 May 2017 21:48:29 UTC by millert
Changes since 1.69:
+3 -2
(diff)
Add bounded attribute to freezero(). OK tom@
revision 1.69/
(Download) -
annotate -
Mon, 10 Apr 2017 05:45:02 UTC by otto
Changes since 1.68:
+2 -1
(diff)
Introducing freezero(3) a version of free that guarantees the process
no longer has access to the content of a memmory object. It does
this by either clearing (if the object memory remains cached) or
by calling munmap(2). ok millert@, deraadt@, guenther@
revision 1.68/
(Download) -
annotate -
Mon, 06 Mar 2017 18:50:28 UTC by otto
OpenBSD release(s): 61
Changes since 1.67:
+2 -1
(diff)
Introducing recallocarray(3), a blend of calloc(3) and reallocarray(3)
with the added feature that released memory is cleared. Much input from various
developers. ok deraadt@ tom@
revision 1.67/
(Download) -
annotate -
Tue, 20 Sep 2016 21:10:22 UTC by fcambus
Changes since 1.66:
+1 -3
(diff)
Remove duplicated includes in stdlib.h and termios.h
OK guenther@
revision 1.66/
(Download) -
annotate -
Fri, 09 Sep 2016 18:12:37 UTC by millert
Changes since 1.65:
+2 -12
(diff)
Move the 10 (!) defintions of NULL to their own mini header file and
update the NULL definition for C++11. OK deraadt@ guenther@ kettenis@
revision 1.65/
(Download) -
annotate -
Tue, 14 Jul 2015 19:05:11 UTC by millert
OpenBSD release(s): 60 59 58
Changes since 1.64:
+2 -2
(diff)
The first argument to devname(3) should be dev_t, not int.
The man page was already correct.
revision 1.64/
(Download) -
annotate -
Sun, 08 Feb 2015 02:58:50 UTC by tedu
OpenBSD release(s): 57
Changes since 1.63:
+10 -10
(diff)
add restrict to strtol like functions. ok guenther
revision 1.63/
(Download) -
annotate -
Thu, 15 Jan 2015 19:55:58 UTC by tedu
Changes since 1.62:
+2 -2
(diff)
we don't have an alloca() symbol anywhere in libc, don't prototype it.
instead, #define to __builtin_alloca. if that doesn't work, you're hosed.
from an old discussion about the perils of alloca. (don't use alloca!)
revision 1.62/
(Download) -
annotate -
Mon, 08 Dec 2014 21:45:19 UTC by deraadt
Changes since 1.61:
+6 -1
(diff)
Change rand(), random(), drand48(), lrand48(), mrand48(), and srand48()
to returning strong random by default, source from arc4random(3).
Parameters to the seeding functions are ignored, and the subsystems remain
in strong random mode. If you wish the standardized deterministic mode,
call srand_deterministic(), srandom_determistic(), srand48_deterministic(),
seed48_deterministic() or lcong48_deterministic() instead.
The re-entrant functions rand_r(), erand48(), nrand48(), jrand48() are
unaffected by this change and remain in deterministic mode (for now).
Verified as a good roadmap forward by auditing 8800 pieces of software.
Roughly 60 pieces of software will need adaptation to request the
deterministic mode.
Violates POSIX and C89, which violate best practice in this century.
ok guenther tedu millert
revision 1.61/
(Download) -
annotate -
Mon, 08 Dec 2014 20:39:56 UTC by tedu
Changes since 1.60:
+1 -5
(diff)
header changes for recent libc changes:
add siphash
delete setkey, encrypt, cfree
revision 1.60/
(Download) -
annotate -
Sun, 31 Aug 2014 02:21:18 UTC by guenther
Changes since 1.59:
+9 -1
(diff)
Add additional userland interfaces for setting close-on-exec on fds
when creating them: mkostemp(), mkostemps(), the 'e' mode letter for
fopen(), freopen(), fdopen(), and popen(). The close-on-exec flag will
be cleared by the action created by posix_spawn_file_actions_adddup2().
Also, add support for the C11 'x' mode letter for fopen() and freopen(),
setting O_EXCL when possibly creating files.
Note: this requires kernel support for pipe2() and dup3()!
ok millert@
revision 1.59/
(Download) -
annotate -
Wed, 09 Jul 2014 16:57:49 UTC by beck
OpenBSD release(s): 56
Changes since 1.58:
+3 -3
(diff)
Clean up after arc4random u_int32_t uint32_t change
ok jsing@
revision 1.58/
(Download) -
annotate -
Tue, 22 Apr 2014 14:26:26 UTC by tedu
Changes since 1.57:
+2 -2
(diff)
change mallocarray to reallocarray. useful in a few more situations.
malloc can, as always, be emulated via realloc(NULL).
ok deraadt
revision 1.57/
(Download) -
annotate -
Mon, 21 Apr 2014 13:17:32 UTC by deraadt
Changes since 1.56:
+4 -1
(diff)
Introducing: void *mallocarray(size_t nmemb, size_t size);
Like calloc(), except without the cleared-memory gaurantee
ok beck guenther, discussed for more than a year...
revision 1.56/
(Download) -
annotate -
Sat, 28 Dec 2013 01:51:53 UTC by martynas
OpenBSD release(s): 55
Changes since 1.55:
+3 -2
(diff)
Annotate a few more bounded functions: realpath(3) needs a buffer
of size at least PATH_MAX. pread(2), pwrite(2) and readlinkat(2)
also take the buffer and the bound. OK theo.
revision 1.55/
(Download) -
annotate -
Fri, 13 Dec 2013 20:48:39 UTC by millert
Changes since 1.54:
+2 -2
(diff)
Fix typo; 200809 not 20080 for __POSIX_VISIBLE. Noticed by jca@
revision 1.54/
(Download) -
annotate -
Fri, 22 Nov 2013 21:32:49 UTC by millert
Changes since 1.53:
+5 -8
(diff)
The getopt() prototype and externs don't belong in stdlib.h. Berkeley
moved them to unistd.h to match POSIX in 1995 but we never did.
The exception to this is getsubopt() which POSIX says should be in
stdlib.h. The non-standard suboptarg extern remains in the BSD-only
section of stdlib.h. Neither getsubopt() nor suboptarg belong in
unistd.h or getopt.h. They were only there to allow us to protect
all the getopt() bits from being multiply defined. OK guenther@
revision 1.53/
(Download) -
annotate -
Mon, 21 Oct 2013 20:33:24 UTC by deraadt
Changes since 1.52:
+1 -4
(diff)
Remove arc4random_stir() and arc4random_addrandom(), which none should
be using directly. Well, a few rare people cloned it upstream and it
will take a bit of time for them to learn.
ok various
revision 1.52/
(Download) -
annotate -
Fri, 31 May 2013 20:59:24 UTC by ajacoutot
OpenBSD release(s): 54
Changes since 1.51:
+5 -1
(diff)
Add getprogname() and setprogname() to ease slackers^porters' work.
Man page adapted from FreeBSD and NetBSD.
Bump libc minor now (there will be more upcoming changes).
input from tedu@
get it in deraadt@
revision 1.51/
(Download) -
annotate -
Mon, 03 Dec 2012 20:08:33 UTC by millert
OpenBSD release(s): 53
Changes since 1.50:
+9 -1
(diff)
Simple emulation of POSIX pty APIs posix_openpt(), ptsname(),
grantpt() and unlockpt() using /dev/ptm. Man pages from FreeBSD.
OK kettenis@ deraadt@ beck@ ajacoutot@ naddy@
revision 1.50/
(Download) -
annotate -
Fri, 01 Jun 2012 01:01:57 UTC by guenther
OpenBSD release(s): 52
Changes since 1.49:
+37 -14
(diff)
Improve standards conformance: ecvt(), fcvt(), gcvt(), mktemp(), ttyslot(),
and valloc() are not in the current version, while posix_memalign() mkstemp(),
and mkdtemp() are, and setstate()'s argument has lost a bogus 'const'.
ok millert@ jmc@ espie@ kettenis@; ports build testing by naddy@
revision 1.49/
(Download) -
annotate -
Sun, 03 Jul 2011 18:51:01 UTC by jsg
OpenBSD release(s): 51 50
Changes since 1.48:
+3 -1
(diff)
As pointed out by Richard Guenther our definition
of NULL was incorrect for c++ compilers that aren't
gcc (or pretend to be gcc like clang).
ok miod@
revision 1.48/
(Download) -
annotate -
Wed, 06 Apr 2011 11:39:42 UTC by miod
Changes since 1.47:
+2 -2
(diff)
Define NULL as a void * instead of a long integer, as required by Single Unix.
Kernel and bootblocks still use the old 0L value until all the NULL abuses
in the code are fixed.
revision 1.47/
(Download) -
annotate -
Tue, 18 May 2010 22:24:55 UTC by tedu
OpenBSD release(s): 49 48
Changes since 1.46:
+2 -1
(diff)
add posix_madvise, posix_memalign, strndup, and strnlen. mostly from
brad and millert, with hints from guenther, jmc, and otto I think.
ok previous.
revision 1.46/
(Download) -
annotate -
Wed, 03 Jun 2009 15:52:16 UTC by millert
OpenBSD release(s): 47 46
Changes since 1.45:
+3 -3
(diff)
Make putenv(), setenv() and unsetenv() standards compliant. The
standard explicitly disallows passing setenv a name with a '=' in
it but historic BSD behavior is to allow this but to ignore the '='
and anything after it.
revision 1.45/
(Download) -
annotate -
Sun, 07 Sep 2008 20:36:07 UTC by martynas
OpenBSD release(s): 45
Changes since 1.44:
+3 -1
(diff)
- replace dtoa w/ David's gdtoa, version 2008-03-15
- provide proper dtoa locks
- use the real strtof implementation
- add strtold, __hdtoa, __hldtoa
- add %a/%A support
- don't lose precision in printf, don't round to double anymore
- implement extended-precision versions of libc functions: fpclassify,
isnan, isinf, signbit, isnormal, isfinite, now that the ieee.h is
fixed
- separate vax versions of strtof, and __hdtoa
- add complex math support. added functions: cacos, casin, catan,
ccos, csin, ctan, cacosh, casinh, catanh, ccosh, csinh, ctanh, cexp,
clog, cabs, cpow, csqrt, carg, cimag, conj, cproj, creal, cacosf,
casinf, catanf, ccosf, csinf, ctanf, cacoshf, casinhf, catanhf,
ccoshf, csinhf, ctanhf, cexpf, clogf, cabsf, cpowf, csqrtf, cargf,
cimagf, conjf, cprojf, crealf
- add fdim, fmax, fmin
- add log2. (adapted implementation e_log.c. could be more acruate
& faster, but it's good enough for now)
- remove wrappers & cruft in libm, supposed to work-around mistakes
in SVID, etc.; use ieee versions. fixes issues in python 2.6 for
djm@
- make _digittoint static
- proper definitions for i386, and amd64 in ieee.h
- sh, powerpc don't really have extended-precision
- add missing definitions for mips64 (quad), m{6,8}k (96-bit) float.h
for LDBL_*
- merge lead to frac for m{6,8}k, for gdtoa to work properly
- add FRAC*BITS & EXT_TO_ARRAY32 definitions in ieee.h, for hdtoa&ldtoa
to use
- add EXT_IMPLICIT_NBIT definition, which indicates implicit
normalization bit
- add regression tests for libc: fpclassify and printf
- arith.h & gd_qnan.h definitions
- update ieee.h: hppa doesn't have quad-precision, hppa64 does
- add missing prototypes to gdtoaimp
- on 64-bit platforms make sure gdtoa doesn't use a long when it
really wants an int
- etc., what i may have forgotten...
- bump libm major, due to removed&changed symbols
- no libc bump, since this is riding on djm's libc major crank from
a day ago
discussed with / requested by / testing theo, sthen@, djm@, jsg@,
merdely@, jsing@, tedu@, brad@, jakemsr@, and others.
looks good to millert@
parts of the diff ok kettenis@
this commit does not include:
- man page changes
revision 1.44/
(Download) -
annotate -
Tue, 24 Jun 2008 06:01:33 UTC by otto
OpenBSD release(s): 44
Changes since 1.43:
+1 -2
(diff)
remove recalloc; sloppy me; ok deraadt@
revision 1.43/
(Download) -
annotate -
Fri, 20 Jun 2008 15:21:06 UTC by ragge
Changes since 1.42:
+2 -6
(diff)
Remove obsolete (and erroneous) #if statement that caused all compilers
except for gcc to get the wrong prototype. Ok millert@
revision 1.42/
(Download) -
annotate -
Fri, 13 Jun 2008 21:04:24 UTC by landry
Changes since 1.41:
+2 -1
(diff)
Add strtof() to libc, some ports seem to like it. Currently it's a simple
call to strtod() with bounding check.
Discussed with pyr@ and otto@
ok otto@ deraadt@
revision 1.41/
(Download) -
annotate -
Sun, 16 Mar 2008 19:47:43 UTC by otto
Changes since 1.40:
+5 -1
(diff)
diff from djm@ committed at his request:
introduce two new APIs for requesting strong random numbers:
arc4random_buf() - fill an arbitrary memory range with random numbers
arc4random_uniform() - return a uniformly distributed random number
below
a specified upper bound, avoiding the bias that comes from a naive
"arc4random() % upper_bound" construction.
these mirror similarly-named functions in the kernel;
lots of discussion deraadt@ mcbride@
revision 1.40/
(Download) -
annotate -
Mon, 03 Sep 2007 14:37:02 UTC by millert
OpenBSD release(s): 43
Changes since 1.39:
+2 -1
(diff)
add recaloc(3)
revision 1.39/
(Download) -
annotate -
Sun, 17 Sep 2006 16:48:04 UTC by djm
OpenBSD release(s): 42 41
Changes since 1.38:
+3 -1
(diff)
add lldiv prototype; ok deraadt@
revision 1.38/
(Download) -
annotate -
Fri, 31 Mar 2006 00:41:21 UTC by deraadt
OpenBSD release(s): 40
Changes since 1.37:
+2 -2
(diff)
after we changed mode_t to be an int, the devname() man page was
updated but the function itself never was; ok millert
revision 1.37/
(Download) -
annotate -
Fri, 13 Jan 2006 17:58:09 UTC by millert
OpenBSD release(s): 39
Changes since 1.36:
+9 -2
(diff)
Add lldiv(), imaxabs(), imaxdiv(), strtoimax() and strtoumax()
revision 1.36/
(Download) -
annotate -
Fri, 06 Jan 2006 18:53:04 UTC by millert
Changes since 1.35:
+9 -11
(diff)
Adapt things to use __type_t instead of _BSD_TYPE_T_
Add new sys/_types.h header
Include machine/_types.h or sys/_types.h where applicable
revision 1.35/
(Download) -
annotate -
Tue, 13 Dec 2005 00:35:22 UTC by millert
Changes since 1.34:
+78 -45
(diff)
First step in include files overhaul. Use __FOO_VISIBLE (as defined
in sys/cdefs.h) instead of _FOO_SOURCE. Also fix several namespace
pollution issues, including the byte order defines. OK deraadt@
revision 1.34/
(Download) -
annotate -
Fri, 27 May 2005 17:45:56 UTC by millert
OpenBSD release(s): 38
Changes since 1.33:
+5 -1
(diff)
mktemp(3) et al. go in stdlib.h, not unistd.h. While there be more
explicit about mktemp(3) in the man page.
revision 1.33/
(Download) -
annotate -
Wed, 11 May 2005 18:44:12 UTC by espie
Changes since 1.32:
+3 -2
(diff)
major abi changes:
* introduce the mbstate_t typedef.
impacts gnu libiconv, which has already been taken care of.
* Prepare for mb stuff to really exist, replace macro MB_CUR_MAX with
an external variable __mb_cur_max (impacts libX11 and various ports).
* use mbstate in all the mb <-> wchar functions with state.
* add a stub iswctype function allowing some ports to compile.
bash and gdiff are missing wcscoll, and need to be told there's no i18n
until this is fixed.
Discussed and matthieu, otto, millert, kettenis, deraadt.
Major libc bump
revision 1.32/
(Download) -
annotate -
Tue, 03 Aug 2004 19:59:42 UTC by millert
OpenBSD release(s): 37 36
Changes since 1.31:
+3 -3
(diff)
Update strtonum() protor
revision 1.31/
(Download) -
annotate -
Mon, 03 May 2004 19:16:36 UTC by tedu
Changes since 1.30:
+3 -1
(diff)
strtonum prototype
revision 1.30/
(Download) -
annotate -
Mon, 03 May 2004 17:21:13 UTC by millert
Changes since 1.29:
+2 -1
(diff)
Add _Exit(3) as per C99. Discussed with espie@ some time ago.
revision 1.29/
(Download) -
annotate -
Wed, 21 Jan 2004 19:50:39 UTC by millert
OpenBSD release(s): 35
Changes since 1.28:
+3 -1
(diff)
Prototype llabs(3). Forgotten commit gathering bit rot in my tree...
revision 1.28/
(Download) -
annotate -
Fri, 01 Aug 2003 17:38:33 UTC by avsm
OpenBSD release(s): 34
Changes since 1.27:
+5 -3
(diff)
add __bounded__ attributes for userland headers; enabled with -Wbounded
ok deraadt@
revision 1.27/
(Download) -
annotate -
Thu, 26 Jun 2003 19:34:17 UTC by avsm
Changes since 1.26:
+2 -4
(diff)
backout the __bounded__ attributes for a while; requested by deraadt@
revision 1.26/
(Download) -
annotate -
Thu, 26 Jun 2003 18:35:13 UTC by avsm
Changes since 1.25:
+5 -3
(diff)
Mark various standard library functions with the __bounded__ attribute.
You must have an up-to-date gcc for this!
deraadt@ ok
revision 1.25/
(Download) -
annotate -
Mon, 02 Jun 2003 19:34:12 UTC by millert
Changes since 1.24:
+2 -6
(diff)
Remove the advertising clause in the UCB license which Berkeley
rescinded 22 July 1999. Proofed by myself and Theo.
revision 1.24/
(Download) -
annotate -
Tue, 03 Dec 2002 20:24:29 UTC by millert
OpenBSD release(s): 33
Changes since 1.23:
+4 -1
(diff)
GNU-like getopt_long() from NetBSD with changes by me to support
getopt_long_only(). At some point this should replace the BSD
getopt(3) but we are not there yet.
While I am here add protection from the multiple getopt() definitions
due to conflicting standards.
revision 1.23/
(Download) -
annotate -
Mon, 02 Dec 2002 15:38:54 UTC by millert
Changes since 1.22:
+4 -1
(diff)
Add ecvt(), fcvt() and gcvt() for standard compliance and legacy code.
revision 1.22/
(Download) -
annotate -
Mon, 02 Dec 2002 02:07:28 UTC by millert
Changes since 1.21:
+2 -1
(diff)
Add prototype for atoll(3). I must have forgotten to commit this bit
when I committed atoll(3).
revision 1.21/
(Download) -
annotate -
Fri, 25 Oct 2002 21:55:28 UTC by millert
Changes since 1.20:
+2 -2
(diff)
NULL is now 0L so it is the same size as a pointer.
OK mickey@ and discussed with deraadt@
revision 1.20/
(Download) -
annotate -
Sat, 29 Jun 2002 00:20:11 UTC by millert
OpenBSD release(s): 32
Changes since 1.19:
+5 -1
(diff)
Replace strtou?q() with the more standard strtou?ll(), using weak
aliases to fake up strtou?q(). espie@ OK.
revision 1.19/
(Download) -
annotate -
Wed, 20 Feb 2002 18:12:44 UTC by millert
OpenBSD release(s): 31
Changes since 1.18:
+1 -8
(diff)
Revert local changes that snuck in to the last commit.
revision 1.18/
(Download) -
annotate -
Wed, 20 Feb 2002 18:11:04 UTC by millert
Changes since 1.17:
+17 -1
(diff)
Some user header files may define an abs macro which will cause a
syntax error if the #define happens before stdlib.h is included.
If abs is #defined, #undef and issue a warning. This is similar
to what Tru64 UNIX does and is effectively the same as what happens
on Solaris (though on Solaris the real abs() is a macro).
revision 1.17/
(Download) -
annotate -
Sun, 17 Feb 2002 19:42:21 UTC by millert
Changes since 1.16:
+11 -14
(diff)
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
revision 1.16/
(Download) -
annotate -
Sat, 16 Feb 2002 21:27:17 UTC by millert
Changes since 1.15:
+79 -79
(diff)
Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
revision 1.15/
(Download) -
annotate -
Sun, 04 Nov 2001 23:27:54 UTC by krw
Changes since 1.14:
+2 -2
(diff)
Ghostscript port refused to build with 'printf' in the
__attribute__ statement. Using '__printf__' makes it happy.
ok millert@ miod@
revision 1.14/
(Download) -
annotate -
Thu, 01 Nov 2001 23:52:10 UTC by miod
Changes since 1.13:
+3 -2
(diff)
Mention printf-like attributes for setproctitle().
millert@ espie@ ok
revision 1.13/
(Download) -
annotate -
Mon, 18 Jun 2001 18:11:12 UTC by millert
OpenBSD release(s): 30
Changes since 1.12:
+2 -1
(diff)
Add new cgetusedb() function to toggle reading of .db files in getcap(3).
Needed for cap_mkdb to really DRT when given several input files or
an output file with a different name from the input file.
cvs: ----------------------------------------------------------------------
revision 1.12/
(Download) -
annotate -
Mon, 03 Apr 2000 23:23:48 UTC by millert
OpenBSD release(s): 29 28 27
Changes since 1.11:
+2 -1
(diff)
Add srandomdev() from FreeBSD for use by sendmail and others.
revision 1.11/
(Download) -
annotate -
Sat, 27 Nov 1999 13:20:25 UTC by espie
Changes since 1.10:
+4 -1
(diff)
In ANSI C++, wchar_t is a builtin. gcc 2.95.1 handles that correctly.
Redefining it as a typedef is an error, as it prevents overloading
on e.g., int/wchar_t separately.
revision 1.10/
(Download) -
annotate -
Fri, 11 Jun 1999 22:47:48 UTC by espie
OpenBSD release(s): 26
Changes since 1.9:
+5 -1
(diff)
Define NULL to be __null for C++: better quality of implementation.
__null is a magic constant of integral type that converts to a null pointer
as should be, but warns for ambiguity when used to resolved an overload
between an integral type and a pointer type.
revision 1.9/
(Download) -
annotate -
Thu, 25 Feb 1999 21:40:15 UTC by millert
OpenBSD release(s): 25
Changes since 1.8:
+8 -8
(diff)
constify getcap(3). This fixes a warning in libcurses and doesn't
really change the API since those parameters that was been constified
really are not modified by getcap(3) routines.
revision 1.8/
(Download) -
annotate -
Fri, 20 Nov 1998 11:18:26 UTC by d
Changes since 1.7:
+2 -1
(diff)
Add thread-safety to libc, so that libc_r will build (on i386 at least).
All POSIX libc api now there (to P1003.1c/D10)
(more md stuff is needed for other libc/arch/*)
(setlogin is no longer a special syscall)
Add -pthread option to gcc (that makes it use -lc_r and -D_POSIX_THREADS).
Doc some re-entrant routines
Add libc_r to intro(3)
dig() uses some libc srcs and an extra -I was needed there.
Add more md stuff to libc_r.
Update includes for the pthreads api
Update libc_r TODO
revision 1.7/
(Download) -
annotate -
Sat, 07 Feb 1998 02:16:26 UTC by millert
OpenBSD release(s): 24 23
Changes since 1.6:
+4 -4
(diff)
More XPG4.2 --
setstate takes a const parameter
don't ever spew to stderr, just return NULL
revision 1.6/
(Download) -
annotate -
Fri, 06 Feb 1998 01:49:06 UTC by deraadt
Changes since 1.5:
+2 -2
(diff)
size_t n in initstate(); XPG
revision 1.5/
(Download) -
annotate -
Tue, 09 Dec 1997 13:32:36 UTC by deraadt
Changes since 1.4:
+2 -2
(diff)
for XPG, do not use special typedef types
revision 1.4/
(Download) -
annotate -
Sun, 21 Sep 1997 10:45:53 UTC by niklas
OpenBSD release(s): 22
Changes since 1.3:
+1 -0
(diff)
Well, as we are heading for a release people are encouraged to rebuild their
entire trees for testing anyway, I might as well do this intrusive touching
of include files now. Added openBSD tags.
revision 1.3/
(Download) -
annotate -
Sat, 28 Dec 1996 06:32:59 UTC by dm
OpenBSD release(s): 21
Changes since 1.2:
+4 -0
(diff)
arc4random() number generator, for use with things like RPC xid's.
revision 1.2/
(Download) -
annotate -
Sat, 30 Dec 1995 08:12:37 UTC by deraadt
OpenBSD release(s): 20
Changes since 1.1:
+3 -3
(diff)
abort() and exit() need __dead tags in stdlib.h; mike.long@analog.com;
netbsd pr#1845
revision 1.1/
(Download) -
annotate -
Wed, 18 Oct 1995 08:41:14 UTC by deraadt
Branch point for:
1.1.1.1
Initial revision
revision 1.1.1.1/
(Download) -
annotate -
Wed, 18 Oct 1995 08:41:14 UTC by deraadt
Tags: netbsd_1_1
Changes since 1.1:
None
initial import of NetBSD tree