summaryrefslogtreecommitdiffstats
path: root/libc/misc/dirent
Commit message (Collapse)AuthorAgeFilesLines
...
* Ok, this should finish off my massive ro-organization. The sourceEric Andersen2001-05-121-2/+1
| | | | | | | | | tree is less messy now (which helps), all libraries are placed into uClibc/lib when compiling, all libraries now use a consistant mechanism for being built, all libraries use a consistant naming scheme where the lib name includes the uClibc version number, which makes ldconfig happy and willing to work with us. -Erik
* Turns out alphasort was totally broken. This fixed one works.Eric Andersen2001-05-081-4/+3
| | | | -Erik
* A patch from Jon Nelson <jnelson@securepipe.com> to make scandirEric Andersen2001-05-081-4/+5
| | | | sort things as it is supposed to do.
* Fix include/errno.h to not use kernel header, and instead use bits/errno.h.Eric Andersen2001-04-067-13/+13
| | | | | | | This required we use _LIBC instead of __LIBC__ to be consistent with glibc. This had some sideffects in sys/syscalls.h. While fixing things, I made everything use __set_errno() for (eventual) thread support. -Erik
* Add in alphasort (working fine) and scandir (just a stub for now).Eric Andersen2001-03-193-1/+90
| | | | -Erik
* Move the dirent stuff. I suppose it is system dependant, but thenEric Andersen2001-03-199-0/+345
it really should be grouped together too. And it needed to be grouped more then it needed to be in sysdeps/linux/common