summaryrefslogtreecommitdiff
path: root/Libraries/LibC
AgeCommit message (Expand)Author
2020-06-08LibC: Don't assert on unknown mode character in fopen()Andreas Kling
2020-06-08LibC: Add nanosleep() wrapper around clock_nanosleep(CLOCK_REALTIME)Andreas Kling
2020-06-08LibC: Add IPPORT_RESERVED and IPPORT_USERRESERVEDAndreas Kling
2020-06-08LibC: Add ws_xpixel and ws_ypixel members to struct winsizeAndreas Kling
2020-06-03LibC: Make sure that ioctl() requests are #defined as macrosAndreas Kling
2020-05-30LibC: Rewrite getopt()Sergey Bugaev
2020-05-30AK+LibC: Add TODO() as an alternative to ASSERT_NOT_REACHED()Andreas Kling
2020-05-29Meta: Add a script check the presence of "#pragma once" in header filesEmanuele Torre
2020-05-29Kernel+Userland: Support remounting filesystems :^)Sergey Bugaev
2020-05-29Kernel: Support read-only filesystem mountsSergey Bugaev
2020-05-29Kernel+LibC: Move O_* and MS_* flags to UnixTypes.hSergey Bugaev
2020-05-28LibC: run clang-format on getopt.h to remove tab charactersEmanuele Torre
2020-05-28LibC: Add a O_CLOEXEC mode element to fopen()AnotherTest
2020-05-26AK: Rename FileSystemPath -> LexicalPathSergey Bugaev
2020-05-26LibC: Ensure abort() doesn't returnSergey Bugaev
2020-05-26LibC: Mark _exit() as noreturnSergey Bugaev
2020-05-26LibC: Remove endless loop after abort() callSergey Bugaev
2020-05-23LibC: Move ssize_t from <stddef.h> to <sys/types.h>Andreas Kling
2020-05-23Kernel+LibC: Fix various build issues introduced by ssize_tAndreas Kling
2020-05-23Kernel+LibC: Let's say that off_t is a ssize_tAndreas Kling
2020-05-23LibC: Declare ssize_t in a platform-agnostic wayAndreas Kling
2020-05-22LibC: Add (empty) netinet/tcp.h backLinus Groh
2020-05-22LibC: Sync file position when dropping read ahead bufferSergey Bugaev
2020-05-20Revert "AK+LibC: Move non-placement new/delete into LibC"Andreas Kling
2020-05-20Revert "LibC: Implement Itanium C++ ABI for static variable guards"Andreas Kling
2020-05-20Revert "Build: Include headers from LibC, LibM, and LibPthread with -isystem"Andreas Kling
2020-05-20LibC: Claim some copyright for stdioSergey Bugaev
2020-05-20LibC: Handle fgets(size = 0)Sergey Bugaev
2020-05-20Build: Include headers from LibC, LibM, and LibPthread with -isystemAndrew Kaster
2020-05-20LibC: Implement Itanium C++ ABI for static variable guardsAndrew Kaster
2020-05-20AK+LibC: Move non-placement new/delete into LibCAndrew Kaster
2020-05-20LibC: Rewrite stdioSergey Bugaev
2020-05-20Kernel+LibC: Switch isatty() to use a fcntl()Sergey Bugaev
2020-05-17LibC: Don't let ctype isfoo() helpers access array out of boundsAndreas Kling
2020-05-17Kernel + LibC: Handle running processes in do_waitid()AnotherTest
2020-05-16Kernel: Absorb LibBareMetal back into the kernelAndreas Kling
2020-05-16Kernel: Remove now-unused KernelInfoPage.hAndreas Kling
2020-05-16Kernel: Remove sys$getdtablesize()Andreas Kling
2020-05-16Kernel: Remove the "kernel info page" used for fast gettimeofday()Andreas Kling
2020-05-15LibC: Fix execvp() errnoSergey Bugaev
2020-05-14Build: Switch to CMake :^)Sergey Bugaev
2020-05-12LibC: Always assign the offset pointer to endptr in strto{u,}ll()AnotherTest
2020-05-11LibC: Implement strtoull correctlyBen Wiederhake
2020-05-11LibC: Use more flexible digit parsing code, deduplicateBen Wiederhake
2020-05-11LibC: Implement new strtod, accurate up to 8 epsBen Wiederhake
2020-05-11LibC: Add minimal <netinet/ip.h>Yonatan Goldschmidt
2020-05-11LibC: Add missing <sys/time.h> include in <utmp.h>Yonatan Goldschmidt
2020-05-11LibC: Add inet_aton, based on inet_ptonYonatan Goldschmidt
2020-05-11Kernel+LibC: Add AF_MAXYonatan Goldschmidt
2020-05-11LibC: Return nullptr in fgets for size=0Yonatan Goldschmidt