summaryrefslogtreecommitdiff
path: root/sys/libkern/index.c
Commit message (Collapse)AuthorAgeFilesLines
* Use __FBSDID().David E. O'Brien2003-06-111-2/+3
| | | | Notes: svn path=/head/; revision=116189
* Zap c_index() and c_rindex(). Bruce prefers these to implicitly convertPeter Wemm1999-12-101-18/+10
| | | | | | | | a const into a non-const as they do in libc. I feel that defeating the type checking like that quite evil, but that's the way it is. Notes: svn path=/head/; revision=54411
* Tempt fate and stop index from converting a const char * into a char *.Peter Wemm1999-11-211-8/+20
| | | | | | | | | | I've made a seperate version (c_index() etc) that use const/const, but I'm not sure it's worth it considering there is one file in the tree that uses index on const strings (kern_linker.c) and it's easily adjusted to scan the strings directly (and is perhaps more efficient that way). Notes: svn path=/head/; revision=53492
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* Back out part 1 of the MCFH that changed $Id$ to $FreeBSD$. We are notPeter Wemm1997-02-221-1/+1
| | | | | | | ready for it yet. Notes: svn path=/head/; revision=22975
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* Added index() which will be used shortly in some fixes to the ibcs2Nate Williams1996-06-071-0/+53
emulation code. Notes: svn path=/head/; revision=16175