summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/mntent.cpp
AgeCommit message (Collapse)Author
2022-01-13LibC: Remove TODO() macros to not break mc portKenneth Myhra
The TODO() macro crashes the port Midnight Commander on start-up.
2022-01-07LibC: Add mntent stub functionsMartin Bříza
These functions are required by Qt but since we don't really need them for just basic apps, let's leave the implementation for later.
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-01-17LibC: Change a couple of ASSERT_NOT_REACHED() to TODO()Linus Groh
Just for semantic correctness and better visibility of those unimplemented stub functions.
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling