Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - Convert the function definition to declare its arguments | robert | 2002-08-30 | 1 | -8/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | in the ANSI-C format. - Change the code a bit to hopefully save some cycles. I.e. (simplified) change a = b + 1; while (--b & 0x7) /* ... */ to a = b; for (; b & 0x7; b--) /* ... */ and while (--a >= 0) /* ... */ to for (; a > 0; a--) /* ... */ - Equip two function arguments of swab() with the 'restrict' type qualifier in form of the '__restrict' macro. This is specified by POSIX.1-2001. | ||||
* | Remove 'register' keyword. | obrien | 2002-03-21 | 1 | -3/+3 |
| | |||||
* | rcsid[]->__FBSDID | obrien | 2001-11-07 | 1 | -4/+2 |
| | |||||
* | Make the rcsid and FreeBSD IDs more sane in the wcs* and wmem* files. | obrien | 2001-05-24 | 1 | -0/+4 |
| | | | | Do the same for the non-wcs*/wmem* files while I'm here. | ||||
* | BSD 4.4 Lite Lib Sources | rgrimes | 1994-05-27 | 1 | -0/+65 |