summaryrefslogtreecommitdiff
path: root/LibC/dirent.h
AgeCommit message (Collapse)Author
2019-06-03LibC: Implement dirfd().Andreas Kling
2019-05-28Add clang-format fileRobin Burchell
Also run it across the whole tree to get everything using the One True Style. We don't yet run this in an automated fashion as it's a little slow, but there is a snippet to do so in makeall.sh.
2018-11-05More work towards getting bash to build.Andreas Kling
Implemented some syscalls: dup(), dup2(), getdtablesize(). FileHandle is now a retainable, since that's needed for dup()'ed fd's. I didn't really test any of this beyond a basic smoke check.
2018-11-05More random compat hacking towards getting bash to build.Andreas Kling
I'm now at the build stage where it complains about a bajillion missing symbols. This is a good place to be!
2018-10-31A bunch of LibC boilerplate stuff added while trying to get figlet to build.Andreas Kling
2018-10-24Lots of hacking to make a very simple "ls" utility.Andreas Kling
I added a dead-simple malloc that only allows allocations < 4096 bytes. It just forwards the request to mmap() every time. I also added simplified versions of opendir() and readdir().