Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | "The contents is" -> "The contents are" | 2002-11-24 | 1 | -2/+2 | ||
| | ||||||
* | Add strerror_r and functions versions of getchar_unlocked and | 2002-11-21 | 2 | -5/+31 | ||
| | | | | putchar_unlocked. Crank the minor on related libs. OK fgs@, deraadt@ | |||||
* | Use va_copy() for varargs assignemnt. va_copy() is standard with C99 | 2002-10-24 | 1 | -3/+3 | ||
| | | | | and gcc3.2 requires this on powerpc. | |||||
* | Move __cleanup into mprotect'ed page to prevent unintentional modifications | 2002-09-14 | 4 | -11/+12 | ||
| | | | | similar to the atexit handlers. Idea and help deraadt@, ok deraadt@ | |||||
* | add *asprintf | 2002-07-24 | 1 | -1/+3 | ||
| | ||||||
* | Document that *printf can return -1 on error. This includes snprintf(), | 2002-07-24 | 1 | -1/+2 | ||
| | | | | though our implementation never does this. | |||||
* | correct check for strchr() failure in EXAMPLE; from pinskia@physics.uc.edu | 2002-07-20 | 1 | -2/+2 | ||
| | ||||||
* | spelling; from Brian Poole <raj@cerias.purdue.edu> | 2002-06-14 | 1 | -2/+2 | ||
| | ||||||
* | Don't decrement the current character pointer past the beginning of the | 2002-05-27 | 1 | -3/+3 | ||
| | | | | buffer passed in. Based on a patch from Mark Andrews. deraadt@ OK | |||||
* | o) start new sentence on a new line; | 2002-05-01 | 1 | -2/+3 | ||
| | | | | | | | o) always close .Bl tags; o) fix usage of .Xr; millert@ ok | |||||
* | fix for NetBSD lib/16483 | 2002-04-29 | 1 | -2/+5 | ||
| | | | | | | | | Do not even try to allocate buffer if SSTR and not SALC (e.g., from snprintf and not asprintf). vfprintf is smart enough to then not try and write to it. ok millert@, deraadt@ | |||||
* | Use the more likely pointer in a sample code fragment; miod@ ok. | 2002-04-05 | 1 | -2/+2 | ||
| | ||||||
* | style(9) for the example; Alexander Yurchenko | 2002-03-05 | 1 | -3/+3 | ||
| | ||||||
* | We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft. | 2002-02-19 | 12 | -151/+15 | ||
| | ||||||
* | Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree) | 2002-02-17 | 2 | -7/+5 | ||
| | ||||||
* | 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. | 2002-02-16 | 8 | -32/+32 | ||
| | ||||||
* | more pid_t use | 2002-01-02 | 1 | -2/+3 | ||
| | ||||||
* | missing comma | 2001-12-07 | 1 | -2/+2 | ||
| | ||||||
* | KNF, i need this for what comes next.. | 2001-12-05 | 1 | -47/+46 | ||
| | ||||||
* | Typo: tempfile ==> tempnam. | 2001-09-22 | 1 | -2/+2 | ||
| | | | | ok millert@ | |||||
* | It is silly to reference the Tahoe architecture. | 2001-09-06 | 1 | -4/+2 | ||
| | ||||||
* | make sure that va_start() has matching va_end() | 2001-09-05 | 1 | -3/+4 | ||
| | ||||||
* | put changes back, this time ALL the files. | 2001-09-04 | 1 | -2/+2 | ||
| | ||||||
* | Back out fgsch@'s tree breaking commits. | 2001-08-30 | 1 | -2/+2 | ||
| | | | | Test next time, ok? | |||||
* | fix some const warnings | 2001-08-30 | 1 | -2/+2 | ||
| | ||||||
* | Fix a bug with the %e flag introduced in a -Wall pass. The original | 2001-08-13 | 1 | -2/+2 | ||
| | | | | | code was in error but due to C precedence rules it didn't cause a problem. | |||||
* | a first pass at -Wall | 2001-07-09 | 25 | -34/+61 | ||
| | ||||||
* | document ll, depreciate q | 2001-06-23 | 1 | -4/+6 | ||
| | ||||||
* | Fix pasto; kleink@netbsd.org | 2001-06-05 | 1 | -2/+2 | ||
| | ||||||
* | knf | 2001-05-31 | 1 | -54/+54 | ||
| | ||||||
* | Fix an incorrect memset() in __grow_type_table(); dk@homepage.ru | 2001-04-20 | 1 | -3/+4 | ||
| | | | | | | While I was there I noticed and fixed a bogus realloc(). We should really check malloc/realloc return values and deal sanely but that will have to be done later. Theo OK'd | |||||
* | It's not that I mind split infinitives. I just like to save'em for when | 2001-02-17 | 1 | -2/+2 | ||
| | | | | they're really needed. | |||||
* | capitalization | 2001-02-12 | 1 | -2/+2 | ||
| | ||||||
* | Various repairs, mostly to get rid of short lines. | 2000-12-24 | 13 | -88/+51 | ||
| | ||||||
* | use strlcpy in the example | 2000-11-22 | 1 | -2/+2 | ||
| | ||||||
* | fdopen(3) takes two args, not one; spotted by fries@. Also, move the CAVEATS | 2000-10-18 | 1 | -20/+20 | ||
| | | | | section to the end like most man pages. | |||||
* | The mkstemp() function appeared in 4.4BSD; todd@ | 2000-09-11 | 1 | -2/+5 | ||
| | ||||||
* | In the format string bug description under CAVEATS, clarify what we mean by | 2000-08-25 | 1 | -4/+4 | ||
| | | | | building the string ``by hand'' using a function like snprintf(); deraadt@ ok | |||||
* | reinsert corrected history section, based on jdolecek@netbsd | 2000-07-31 | 1 | -1/+9 | ||
| | ||||||
* | Stronger caveat wrt stack smashing via % escapes. Each man page | 2000-07-16 | 1 | -5/+14 | ||
| | | | | carries the same caveat... | |||||
* | Insert missing semi-colon. | 2000-07-07 | 1 | -2/+2 | ||
| | ||||||
* | correct return values | 2000-06-25 | 1 | -12/+13 | ||
| | ||||||
* | Remove redundant HISTORY section. | 2000-04-27 | 1 | -8/+1 | ||
| | ||||||
* | C deals with complex functions, but not imaginary ones yet. | 2000-04-25 | 1 | -3/+2 | ||
| | ||||||
* | Flesh out all of the stdio man pages. | 2000-04-20 | 18 | -324/+272 | ||
| | ||||||
* | Repairs, mostly removing hard sentence breaks. | 2000-04-18 | 6 | -37/+49 | ||
| | ||||||
* | Mostly punctuation fixes. | 2000-04-15 | 3 | -7/+7 | ||
| | ||||||
* | Trailing whitespace begone! | 2000-04-12 | 1 | -6/+6 | ||
| | ||||||
* | list 'i' only once | 2000-04-12 | 1 | -2/+1 | ||
| | ||||||
* | fseeko.3 and ftello.3 | 2000-03-28 | 1 | -1/+2 | ||
| |