Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Mention that mkdtemp() is not portable. | 1998-02-23 | 1 | -2/+15 | ||
| | ||||||
* | Cast pointer in assignment | 1998-02-07 | 2 | -6/+6 | ||
| | ||||||
* | clarify fileno(3) | 1998-02-04 | 1 | -2/+2 | ||
| | ||||||
* | Better fix for %n and whitespace. Chris Torek <torek@bsdi.com> | 1998-01-20 | 1 | -12/+3 | ||
| | ||||||
* | Ignore whitespace separating a conversion and %n. There may be | 1998-01-19 | 1 | -2/+7 | ||
| | | | | a cleaner way to do this. | |||||
* | Oops, missed a 0 vs. '\0' | 1998-01-12 | 1 | -2/+2 | ||
| | ||||||
* | typo | 1998-01-12 | 1 | -2/+2 | ||
| | ||||||
* | Based on some FreeBSD changes: | 1998-01-12 | 7 | -31/+34 | ||
| | | | | | | 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(). | |||||
* | Deal with realloc() failure in v?asprintf() | 1997-11-30 | 1 | -2/+3 | ||
| | ||||||
* | Build asprintf.c and vasprintf.c | 1997-11-29 | 1 | -4/+4 | ||
| | ||||||
* | Implement asprintf(3) and vasprintf(3) functions similar to the | 1997-11-29 | 4 | -43/+232 | ||
| | | | | | ones in the glibc. Some man pages changes from FreeBSD (asprintf.c/vasprintf.c are not based on GNU or FreeBSD code). | |||||
* | Return -1, not EOF for size < 1. XPG4.2 specifies the return value | 1997-11-29 | 2 | -4/+6 | ||
| | | | | | should be < 1. While EOF is currently defined as -1 it is bad form to assume this. | |||||
* | use "(off_t)-1" instead of "-1L" (!) | 1997-11-09 | 1 | -2/+2 | ||
| | ||||||
* | Use lstat() not stat() so we catch dangling symlinks, hubertf@netbsd.org | 1997-10-08 | 2 | -17/+34 | ||
| | | | | Also, update the man page to correspond to reality. | |||||
* | 1) Don't truncate the input string when a directory cannot be stat'd | 1997-10-07 | 2 | -18/+18 | ||
| | | | | | 2) Use traditional mktemp(3) semantics. Don't return an error if directories in the path don't exist yet for mktemp(3) only. | |||||
* | Man link for mkdtemp(3). | 1997-09-26 | 1 | -1/+2 | ||
| | ||||||
* | #if __STDC__ --> #ifdef __STDC__ | 1997-07-25 | 11 | -35/+35 | ||
| | ||||||
* | Don't tell people to cast NULL to a specific pointer type. | 1997-07-08 | 1 | -2/+2 | ||
| | ||||||
* | snprintf(3) is not non-portable (it is part of XPG4) it is just | 1997-06-30 | 1 | -2/+3 | ||
| | | | | not availalble on older systems. | |||||
* | Add mkdtemp(3) | 1997-06-20 | 2 | -14/+52 | ||
| | ||||||
* | + an Xr | 1997-06-13 | 1 | -2/+3 | ||
| | ||||||
* | Xr rmdir | 1997-06-05 | 1 | -2/+3 | ||
| | ||||||
* | Need <errno.h> | 1997-05-31 | 1 | -1/+2 | ||
| | ||||||
* | Set errno to EBADF when trying to write to a stream not open for writing; | 1997-05-31 | 1 | -2/+4 | ||
| | | | | required by POSIX | |||||
* | Change a stat(2) -> lstat(2) to avoid symlink games. From Keith | 1997-04-07 | 1 | -2/+2 | ||
| | | | | Bostic <bostic@bostic.com>. | |||||
* | 10 X's for mktemp() and mkstemp(). | 1997-04-03 | 3 | -7/+7 | ||
| | ||||||
* | more XXXX for mktemp | 1997-02-12 | 2 | -7/+7 | ||
| | ||||||
* | Pull in stdlib.h for arc4random prototype. | 1997-02-10 | 1 | -1/+2 | ||
| | ||||||
* | pre-pad with random alphabetic letters instead of digit 0 | 1997-02-07 | 1 | -5/+17 | ||
| | ||||||
* | back out my last change to avoid the __warn_references on the mips - it's | 1997-01-20 | 4 | -12/+4 | ||
| | | | | now done for the pmax like for the arc in machine/cdefs.h | |||||
* | put all the __warn_references behind a #ifndef NO_WARN_REFERENCES which | 1997-01-19 | 4 | -4/+12 | ||
| | | | | | is then set in the libc Makefile for the mips (the mips linker can't handle them) | |||||
* | 95% of common uses of these are incorrect and insecure. correct use is | 1996-12-28 | 3 | -9/+32 | ||
| | | | | incredibly rare. Time for some education! | |||||
* | suggest alternative in ld warn message | 1996-12-28 | 1 | -2/+3 | ||
| | ||||||
* | Clean up lint and compile warnings | 1996-12-14 | 1 | -9/+6 | ||
| | ||||||
* | formatting error | 1996-12-04 | 1 | -2/+2 | ||
| | ||||||
* | Formatting error spotted by Theo | 1996-11-19 | 1 | -2/+2 | ||
| | ||||||
* | va_list is *not* void* all over... | 1996-11-13 | 1 | -18/+23 | ||
| | ||||||
* | Verify that file pointer is writable | 1996-10-28 | 2 | -2/+14 | ||
| | ||||||
* | remove(3) should be able to remove empty directories | 1996-10-28 | 1 | -2/+9 | ||
| | ||||||
* | Set errno to EBADF when attempting to write to a file pointer opened read-only | 1996-10-27 | 1 | -2/+5 | ||
| | ||||||
* | Need <errno.h> | 1996-10-26 | 1 | -1/+2 | ||
| | ||||||
* | Set errno when trying to write to a read-only stream | 1996-10-26 | 1 | -2/+4 | ||
| | ||||||
* | Document printf addition. From Mark Diekhans (markd@grizzly.com). | 1996-09-29 | 1 | -1/+16 | ||
| | ||||||
* | Support XPG/3-style positional arguments in printf family. | 1996-09-24 | 1 | -23/+409 | ||
| | | | | From Mark Diekhans (markd@grizzly.com). | |||||
* | Fix NetBSD PR 2750 by der Mouse <mouse@Rodents.Montreal.QC.CA>: | 1996-09-20 | 1 | -4/+6 | ||
| | | | | | Clarify description of seek function and that the seek function accepts an fpos_t argument and not an off_t argument. | |||||
* | From NetBSD PR 2751 from der Mouse <mouse@Rodents.Montreal.QC.CA>: | 1996-09-20 | 1 | -2/+2 | ||
| | | | | fwopen() argument type mis-described | |||||
* | Remove dead code | 1996-09-15 | 2 | -5/+4 | ||
| | | | | | | Remove unused variables Silence some warnings lint(1) is your friend | |||||
* | issetugid backwards, duh; thanks bitblt | 1996-09-05 | 1 | -2/+2 | ||
| | ||||||
* | use issetugid() | 1996-08-25 | 1 | -2/+2 | ||
| | ||||||
* | explain why mktemp is unsafe | 1996-08-21 | 1 | -1/+7 | ||
| |