Age | Commit message (Collapse) | Author | |
---|---|---|---|
1998-12-15 | more | Theo de Raadt | |
1998-12-15 | flesh out this man page with some examples | Theo de Raadt | |
1998-11-25 | Changes from NetBSD: | Todd C. Miller | |
o Use S_ISCHR instead of doing it by hand o st_blksize cannot be negative (christos) | |||
1998-11-20 | Add thread-safety to libc, so that libc_r will build (on i386 at least). | David Leonard | |
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 | |||
1998-11-20 | Allocate space exponentially, not linearly for v?asprintf; mycroft@netbsd.org | Todd C. Miller | |
1998-11-10 | fix append mode; mason@primenet.com.au | Theo de Raadt | |
1998-10-16 | Make sure we free the buffer in all error cases. Do the final | Todd C. Miller | |
realloc(3) to the size of the string, not the size of the buffer allocated for the string (which is a noop). mycroft@netbsd.org | |||
1998-09-27 | Add a missing note about asprintf | Todd C. Miller | |
1998-09-18 | need sys/stat.h; jon@chalk.oaktree.net.uk | Theo de Raadt | |
1998-09-10 | thread-safer | Theo de Raadt | |
1998-08-30 | v?asnprintf was never ocmmitted because it make stdio guts too gross. ↵ | Todd C. Miller | |
Remove references... | |||
1998-08-29 | man page repairs; aaron@ug.cs.dal.ca | Theo de Raadt | |
1998-08-28 | links to asnprintf and such | Theo de Raadt | |
1998-08-14 | realloc repair | Theo de Raadt | |
1998-07-27 | Use a single character buffer for the size==0 case. Stdio internals do not ↵ | Todd C. Miller | |
deal correctly with zero size buffer and NULL pointer. torek@bsdi.com | |||
1998-07-14 | formatting flaws | Theo de Raadt | |
1998-07-03 | link for mkstemps() | Theo de Raadt | |
1998-06-30 | add mkstemp(char *template, int suffixlen) interface | Theo de Raadt | |
1998-06-21 | Remove the advertising clause in my old license, it impedes free use | Todd C. Miller | |
of the code as a large number of similar clauses makes it impossible to write an ad for a product using the code... | |||
1998-06-15 | use Bx macro for BSD versions | Michael Shalayeff | |
1998-04-14 | wrap Z->a and z->A; peter@netplex.com.au | Theo de Raadt | |
1998-03-16 | oops | Theo de Raadt | |
1998-03-12 | minor glitch | Theo de Raadt | |
1998-03-12 | explain security considerations in some detail | Theo de Raadt | |
1998-03-10 | fchown() after unlink(), taking umask into account; std conformance ↵ | Theo de Raadt | |
according to casper@HOLLAND.SUN.COM | |||
1998-03-09 | at least 6 X, 10 is better | Theo de Raadt | |
1998-03-09 | POSIX behaviour of abort; mckay | Theo de Raadt | |
1998-03-09 | grammar fixes by mckay | Theo de Raadt | |
1998-03-07 | .Bx Open -> .Ox 2.x | Todd C. Miller | |
1998-03-07 | Use .Ox | Todd C. Miller | |
1998-03-04 | uninitialized case; bde | Theo de Raadt | |
1998-02-23 | Mention that mkdtemp() is not portable. | Todd C. Miller | |
1998-02-07 | Cast pointer in assignment | Thorsten Lockert | |
1998-02-04 | clarify fileno(3) | Theo de Raadt | |
1998-01-20 | Better fix for %n and whitespace. Chris Torek <torek@bsdi.com> | Todd C. Miller | |
1998-01-19 | Ignore whitespace separating a conversion and %n. There may be | Todd C. Miller | |
a cleaner way to do this. | |||
1998-01-12 | Oops, missed a 0 vs. '\0' | Todd C. Miller | |
1998-01-12 | typo | Todd C. Miller | |
1998-01-12 | Based on some FreeBSD changes: | Todd C. Miller | |
For *s*printf, set f._file to -1 like the comments in stdio.h say. Use '\0', not 0, where appropriate. Don't error out on size of '0' for v?snprintf(). | |||
1997-11-30 | Deal with realloc() failure in v?asprintf() | Todd C. Miller | |
1997-11-29 | Build asprintf.c and vasprintf.c | Todd C. Miller | |
1997-11-29 | Implement asprintf(3) and vasprintf(3) functions similar to the | Todd C. Miller | |
ones in the glibc. Some man pages changes from FreeBSD (asprintf.c/vasprintf.c are not based on GNU or FreeBSD code). | |||
1997-11-29 | Return -1, not EOF for size < 1. XPG4.2 specifies the return value | Todd C. Miller | |
should be < 1. While EOF is currently defined as -1 it is bad form to assume this. | |||
1997-11-09 | use "(off_t)-1" instead of "-1L" (!) | flipk | |
1997-10-08 | Use lstat() not stat() so we catch dangling symlinks, hubertf@netbsd.org | Todd C. Miller | |
Also, update the man page to correspond to reality. | |||
1997-10-07 | 1) Don't truncate the input string when a directory cannot be stat'd | Todd C. Miller | |
2) Use traditional mktemp(3) semantics. Don't return an error if directories in the path don't exist yet for mktemp(3) only. | |||
1997-09-26 | Man link for mkdtemp(3). | Todd C. Miller | |
1997-07-25 | #if __STDC__ --> #ifdef __STDC__ | Michael Shalayeff | |
1997-07-08 | Don't tell people to cast NULL to a specific pointer type. | Todd C. Miller | |
1997-06-30 | snprintf(3) is not non-portable (it is part of XPG4) it is just | Todd C. Miller | |
not availalble on older systems. |