Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix three warnings: | tjr | 2003-01-04 | 1 | -2/+2 |
| | | | | | | o #include <stdio.h> to make sprintf()'s prototype visible. o Remove unused variable: sbuf. o Don't use assignment as truth value. | ||||
* | style(9): return type on separate line from function name. | tjr | 2003-01-04 | 2 | -2/+4 |
| | |||||
* | Add missing #include "namespace.h". | tjr | 2003-01-03 | 1 | -0/+1 |
| | |||||
* | Remove unused variable: ntmp. | tjr | 2003-01-03 | 1 | -1/+0 |
| | |||||
* | #include <string.h> for strcmp()'s prototype. | tjr | 2003-01-03 | 1 | -1/+2 |
| | |||||
* | Implement POSIX grantpt(3) functionality, and add a pt_chown utility (akin | jmallett | 2003-01-02 | 3 | -7/+491 |
| | | | | | | | | to Solaris, it is in /usr/libexec) to perform the handing over of tty nodes to the user being granted the pty. Submitted by: Ryan Younce <ryany@pobox.com> Reviewed by: security-officer@, standards@, mike@ | ||||
* | Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup, | schweikh | 2003-01-01 | 1 | -1/+1 |
| | | | | especially in troff files. | ||||
* | mdoc(7) police: Deal with self-xrefs. | ru | 2002-12-24 | 1 | -1/+1 |
| | |||||
* | Document what really occurs when we obtain an error. | trhodes | 2002-12-20 | 1 | -6/+9 |
| | | | | | PR: 43357 Submitted by: David Schultz <dschultz@uclink.Berkeley.EDU> | ||||
* | mdoc(7) police: "The .Fa argument.". | ru | 2002-12-19 | 2 | -1/+5 |
| | |||||
* | mdoc(7) police: Fixed abuses of the .Ar and .Em macros. | ru | 2002-12-18 | 10 | -31/+32 |
| | |||||
* | mdoc(7) police: "The .Fn function". | ru | 2002-12-18 | 7 | -10/+34 |
| | |||||
* | mdoc(7) police: sort xrefs in SEE ALSO. | ru | 2002-12-13 | 1 | -1/+1 |
| | |||||
* | Uniformly refer to a file system as "file system". | ru | 2002-12-12 | 1 | -1/+1 |
| | | | | Approved by: re | ||||
* | mdoc(7) police: overhaul. | ru | 2002-12-09 | 1 | -109/+232 |
| | | | | Approved by: re | ||||
* | mdoc(7) police: nits. | ru | 2002-12-09 | 1 | -15/+18 |
| | | | | Approved by: re | ||||
* | Consistently mark std(in|out|err) with .Dv, because that's how they | ru | 2002-12-04 | 2 | -3/+7 |
| | | | | | | | are marked up in stdio(3), and because they are defined expressions of type "FILE *". Approved by: re | ||||
* | mdoc(7) police: sweep. | ru | 2002-11-29 | 1 | -11/+13 |
| | |||||
* | mdoc(7) police: formatting nits. | ru | 2002-11-29 | 3 | -12/+32 |
| | | | | Approved by: re | ||||
* | libc_r wasn't so tied to libc for 22 months. | ru | 2002-11-18 | 1 | -5/+3 |
| | |||||
* | Define `Sudden_Underflow' when compiling for the Alpha | robert | 2002-11-14 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | architecture, mainly to avoid getting a SIGFPE signal sent when calling strtod(3) with certain input. The SIGFPE has been sent because the code was not aware that a Gradual Underflow is handled in software via traps on the Alpha architecture, but is not implemented in our Alpha kernel layer. With `Sudden_Underflow' defined, strtod(3) should not depend on Gradual Underflow and adjust its calculations accordingly, which means that other, more subtle errors than the sending of SIGFPE could be solved by this. Discussed with: bde PR: alpha/12623 PR: alpha/17032 PR: alpha/43567 MFC after: 7 days | ||||
* | de-__P() | alfred | 2002-10-16 | 1 | -3/+3 |
| | |||||
* | - Remove the lsearch() and lfind() functions and their manpage from | robert | 2002-10-16 | 3 | -2/+165 |
| | | | | | | | | | the compatibility library libcompat. - Add new implementations of lsearch() and lfind() which conform to IEEE Std 1003.1-2001 to libc. Add a new manual page for them and add them to the makefile. - Add function prototypes for lsearch() and lfind() to the search.h header. | ||||
* | Remove unneeded $FreeBSD$ tags. | robert | 2002-10-16 | 2 | -4/+0 |
| | |||||
* | - Remove the old insque() and remque() functions and their manual | robert | 2002-10-16 | 4 | -5/+144 |
| | | | | | | | | | page from the compatibility library. - Add new implementations of insque() and remque() which conform to IEEE Std 1003.1-2001 to libc. Add a new manual page for them and connect them to the build. - Add the prototypes of insque() and remque() to the search.h header. | ||||
* | Fix a typo causing incorrect formatting for negative values in some locales | tjr | 2002-10-12 | 1 | -3/+5 |
| | | | | | | (at least the French ones), a memory leak upon successful termination, a pointer arithmetic error causing heap corruption, and an off-by-one bug causing incorrect amounts of padding at the right of the value. | ||||
* | Save errno around calls to free(); at least some code paths clobber it | tjr | 2002-10-11 | 1 | -0/+3 |
| | | | | and we are not interested in any errors it may report. | ||||
* | Document the kind of format string strfmon() expects. Sync the Errors | tjr | 2002-10-11 | 1 | -5/+74 |
| | | | | section with reality. | ||||
* | Use the new struct lconv members to determine how to format international | tjr | 2002-10-11 | 1 | -1/+12 |
| | | | | monetary values. | ||||
* | Non-negative amounts should not have an extra space in front of them | tjr | 2002-10-11 | 1 | -6/+2 |
| | | | | when the `(' flag is used. | ||||
* | "Left precision" and "right precision" are not flags, but separate parts | tjr | 2002-10-11 | 1 | -13/+15 |
| | | | | of the format string that appear after the field width. | ||||
* | Add cross-references to wide character versions of these functions. | tjr | 2002-10-10 | 3 | -3/+6 |
| | |||||
* | Add missing const qualifier in tfind(). | mike | 2002-10-03 | 2 | -2/+2 |
| | |||||
* | Add getopt_long(3). | eric | 2002-09-29 | 3 | -2/+771 |
| | | | | | Obtained from: NetBSD Sponsored by: Apple | ||||
* | Add restrict type-qualifier. | mike | 2002-09-20 | 2 | -2/+3 |
| | |||||
* | Implement C99's _Exit() interface. | wollman | 2002-09-10 | 6 | -55/+158 |
| | | | | | | Implement a version of qsort that provides a thunk to the comparison function. Update manual pages. | ||||
* | Include some verbage about not calling exit() from functions registered | wollman | 2002-09-06 | 2 | -2/+24 |
| | | | | by atexit(). | ||||
* | Style: One space between "restrict" qualifier and "*". | tjr | 2002-09-06 | 12 | -17/+17 |
| | |||||
* | s/EDOFUS/EDOOFUS/ | phk | 2002-08-21 | 1 | -3/+3 |
| | | | | Persuaded by: Google | ||||
* | - Add the 'restrict' qualifier to the function prototypes and | robert | 2002-08-15 | 12 | -41/+17 |
| | | | | | | | | definitions of the functions that convert strings to numbers and are defined by IEEE Std 1003-1.2001. - Use ANSI-C function definitions for all of the functions mentioned above plus strtouq and strtoq. - Update the prototypes in the manual pages. | ||||
* | - Add the 'restrict' qualifier to match the IEEE Std 1003.1-2001 | robert | 2002-08-14 | 2 | -7/+11 |
| | | | | | | | prototype of the tdelete(3) function. - Remove duplicated space. - Use an ANSI-C function definition for tdelete(3). - Update the manual page. | ||||
* | Use a union to access the words of a double as this is less likely | dwmalone | 2002-08-13 | 1 | -4/+8 |
| | | | | | | | | | | | | to cause bugs when gcc is more aggressively optimising things. There are still problems with dtoa mentioned in the PR - maybe Dan could suggest a patch. PR: 40209 Submitted by: Dan Lukes <dan@obluda.cz> Approved by: bde MFC after: 2 weeks | ||||
* | Make sure we set errno sensibly in case of failure. | phk | 2002-08-09 | 1 | -0/+7 |
| | | | | Spotted by: ache | ||||
* | Nonexistent SIZE_MAX -> SIZE_T_MAX | ache | 2002-08-04 | 1 | -1/+1 |
| | |||||
* | Signal an error instead of giving the caller less memory than they asked | tjr | 2002-08-04 | 1 | -0/+7 |
| | | | | | | for when num * size would cause integer overflow. MFC after: 1 week | ||||
* | Fix some comments. | wollman | 2002-07-10 | 1 | -4/+6 |
| | |||||
* | Remove improper use of <namespace.h> | deischen | 2002-06-27 | 1 | -1/+0 |
| | |||||
* | Clarify the bit about realloc() and its `ptr' argument a bit. | keramida | 2002-06-06 | 1 | -2/+3 |
| | | | | | | | | Hopefully, now it is more clear that the memory referenced by the ptr argument of realloc(ptr,size) is freed and only the return value of realloc() points to a valid memory area upon successful completion. Submitted by: Martin Faxer <gmh003532@brfmasthugget.se> | ||||
* | Const poison. | phk | 2002-05-30 | 1 | -3/+5 |
| | | | | Partially submitted by: wollman | ||||
* | mdoc(7) police: nit. | ru | 2002-05-29 | 1 | -1/+1 |
| |