| Commit message (Expand) | Author | Age | Files | Lines |
| * | When using res_send/res_query/res_search, the caller must either | Jacques Vidrine | 2002-09-13 | 6 | -26/+7 |
| * | Add an implementation of fabs() (which is quite trivial). | Thomas Moestl | 2002-09-13 | 2 | -1/+38 |
| * | Correct type of second argument: it is wchar_t ** restrict, | Tim J. Robbins | 2002-09-12 | 1 | -2/+2 |
| * | Update to reflect reality. | Archie Cobbs | 2002-09-11 | 2 | -31/+8 |
| * | Add man pages for getcontext()/setcontext(), makecontext()/swapcontext(), | Archie Cobbs | 2002-09-11 | 4 | -5/+331 |
| * | In kvm_openfiles/kvm_open, mark the file descriptors as close-on-exec. | Jacques Vidrine | 2002-09-11 | 1 | -0/+12 |
| * | Add an implementation of wcsftime() (wide character version of strftime()). | Tim J. Robbins | 2002-09-11 | 3 | -2/+152 |
| * | Completely redo thread states. | Julian Elischer | 2002-09-11 | 1 | -21/+24 |
| * | Add `restrict' type-qualifier. | Mike Barcroft | 2002-09-11 | 3 | -6/+6 |
| * | Adjust to reflect reality, which is that sigaltstack() takes stack_t *'s. | Archie Cobbs | 2002-09-10 | 1 | -6/+6 |
| * | Implement C99's _Exit() interface. | Garrett Wollman | 2002-09-10 | 6 | -55/+158 |
| * | Get this file closer to style(9). | Poul-Henning Kamp | 2002-09-08 | 1 | -51/+55 |
| * | Add wcstol() and wcstoul(), based on strtol() and strtoul(). | Tim J. Robbins | 2002-09-08 | 4 | -4/+314 |
| * | Replace a stray reference to strtok() with one to wcstok(). | Tim J. Robbins | 2002-09-08 | 1 | -1/+1 |
| * | Fix a syntax error which causes an annoying warning. | Garrett Wollman | 2002-09-08 | 1 | -0/+1 |
| * | Add an implementation of wcstok(), based on strtok_r(). | Tim J. Robbins | 2002-09-07 | 3 | -3/+213 |
| * | Two arrays were born from the same seeds, both grew into complementary sets | Juli Mallett | 2002-09-07 | 1 | -1/+1 |
| * | Sync prototypes with <wchar.h> with respect to the restrict qualifier. | Tim J. Robbins | 2002-09-07 | 1 | -6/+6 |
| * | Add restrict qualifiers where C99 permits them. All of these already had | Tim J. Robbins | 2002-09-07 | 6 | -12/+12 |
| * | Call strtok_r() via a libc private name from within strtok(). | Tim J. Robbins | 2002-09-07 | 1 | -2/+6 |
| * | Fix a bug where calling MD5File(3) with a zero-length file generated an | Bruce A. Mah | 2002-09-06 | 1 | -0/+1 |
| * | Include some verbage about not calling exit() from functions registered | Garrett Wollman | 2002-09-06 | 2 | -2/+24 |
| * | Style: One space between "restrict" qualifier and "*". | Tim J. Robbins | 2002-09-06 | 59 | -92/+92 |
| * | Don't need to install the signal trampoline here anymore. | Jake Burkholder | 2002-09-03 | 1 | -1/+0 |
| * | Install the userland signal trampoline when sigaction is first called, | Jake Burkholder | 2002-09-03 | 2 | -1/+50 |
| * | Fix a nasty bug exposed by mktime() when time_t is significantly bigger | Peter Wemm | 2002-09-03 | 1 | -0/+6 |
| * | Set errno to EILSEQ when invalid multibyte sequences are detected | Tim J. Robbins | 2002-09-03 | 3 | -3/+14 |
| * | Use FOO(a) for macros with variadic args, instead of FOO(a,) or FOO(a, ). | Jake Burkholder | 2002-09-02 | 1 | -3/+3 |
| * | - Let their manual pages show the reader that the bzero(3) and | Robert Drehmel | 2002-09-01 | 4 | -22/+33 |
| * | Typo: refer to MB_LEN_MAX instead of MB_CHAR_MAX (which does not exist). | Tim J. Robbins | 2002-09-01 | 1 | -1/+1 |
| * | Add restrict qualifiers to the arguments of mbstowcs, mbtowc() and | Tim J. Robbins | 2002-09-01 | 4 | -9/+9 |
| * | Fix a memory leak. | Mike Barcroft | 2002-09-01 | 1 | -1/+3 |
| * | Implement the XSI extension which allows the destination string to be | Tim J. Robbins | 2002-08-31 | 2 | -6/+48 |
| * | Split ansi.c into a separate source file for each function. | Tim J. Robbins | 2002-08-31 | 6 | -85/+253 |
| * | Use ntohl() to read cnains number in new format | Andrey A. Chernov | 2002-08-31 | 1 | -2/+4 |
| * | Add the 'restrict' type qualifier to the function prototype | Robert Drehmel | 2002-08-30 | 1 | -1/+1 |
| * | - Update the manual page of bcmp(3) by replacing | Robert Drehmel | 2002-08-30 | 2 | -7/+12 |
| * | Style fix | Andrey A. Chernov | 2002-08-30 | 1 | -3/+3 |
| * | - Convert the function definition to declare its arguments | Robert Drehmel | 2002-08-30 | 1 | -8/+4 |
| * | Prepare for switching to unlimited chains format. | Andrey A. Chernov | 2002-08-30 | 2 | -23/+46 |
| * | - Update the manual pages of index() and rindex() to show | Robert Drehmel | 2002-08-30 | 4 | -17/+38 |
| * | - Update the manual page to show that the associated header file | Robert Drehmel | 2002-08-30 | 2 | -4/+10 |
| * | - Update strcasecmp(3)/strncasecmp(3) to reflect the fact that | Robert Drehmel | 2002-08-30 | 2 | -2/+9 |
| * | Hopefully unbreak world. ke_slptime is gone. It should really have been | Peter Wemm | 2002-08-30 | 1 | -1/+1 |
| * | Remove much of the dereferencing of the fd table entries to look | Daniel Eischen | 2002-08-29 | 39 | -77/+115 |
| * | Make the libc_r version of select() set the readable or writable | Archie Cobbs | 2002-08-29 | 3 | -12/+18 |
| * | When poll(2)'ing for readability or writability of a file descriptor | Archie Cobbs | 2002-08-29 | 3 | -6/+18 |
| * | Allow one to grab the definition of struct ucred by defining _WANT_UCRED | Alfred Perlstein | 2002-08-28 | 1 | -2/+1 |
| * | Print a '-' sign for negative zero. Tested with | Jens Schweikhardt | 2002-08-27 | 1 | -7/+2 |
| * | Replace various spelling with FALLTHROUGH which is lint()able | Philippe Charnier | 2002-08-25 | 9 | -9/+9 |