- Jun 01, 2023
-
-
Jeremy Soller authored
-
- May 29, 2023
-
-
Florian Meißner authored
-
- Mar 26, 2023
-
-
David CARLIER authored
reallocarray introduction available on glibc 2.26. allocates an array of m*n elements but checking for overflow.
-
- Jul 27, 2022
-
-
Nagy Tibor authored
-
- Jun 23, 2020
-
-
Peter Limkilde Svendsen authored
-
- Jun 22, 2020
-
-
- May 24, 2020
-
-
Peter Limkilde Svendsen authored
-
- Jul 01, 2019
-
-
- May 30, 2019
-
-
Peter Limkilde Svendsen authored
-
- May 23, 2019
-
-
Peter Limkilde Svendsen authored
-
- May 22, 2019
-
-
Peter Limkilde Svendsen authored
-
- May 12, 2019
-
-
- May 08, 2019
-
-
Peter Limkilde Svendsen authored
-
- Apr 26, 2019
-
-
Alex Lyon authored
-
- Apr 22, 2019
-
-
- Apr 21, 2019
-
-
jD91mZM2 authored
-
- Feb 25, 2019
-
-
Nagy Tibor authored
Turns the results of these macros from compound to regular statements using the old `do { ... } while(0)` trick. Must have for function-like macros.
-
- Feb 24, 2019
-
-
Nagy Tibor authored
realpath: Fixing undefined behaviour in the second test. If the call fails the resolved_name argument cannot be used for error checking because its state is undefined by SUSv2. pipe: Changing the order of close and write error handling code. Errors in close could overwrite errno after write errors, returning incorrect error messages. gmtime: Removed duplicate checks Other fixes for fseek, rename, mktime, putwchar
-
- Feb 23, 2019
-
-
Nagy Tibor authored
-
- Feb 21, 2019
-
-
Nagy Tibor authored
-
Nagy Tibor authored
This will allow us to redefine the exit function. For example: ``` #define exit(code) { \ fprintf(stderr, "%s:%d: exit(%s) in function ‘%s’\n", __FILE__, __LINE__, #code, __func__); \ _exit(code); \ } ```
-
- Feb 20, 2019
-
-
Nagy Tibor authored
When the execution reaches the end of the main functions, they implicitly return a successful status.
-
Nagy Tibor authored
-
Nagy Tibor authored
-
Nagy Tibor authored
-
- Feb 02, 2019
-
-
Peter Limkilde Svendsen authored
-
Peter Limkilde Svendsen authored
-
- Dec 14, 2018
-
-
Jeremy Soller authored
-
- Nov 27, 2018
-
-
Jeremy Soller authored
- Remove incorrect header styles - Use export.replace where header style was previously needed - Check compilation of tests using system gcc
-
- Oct 17, 2018
-
-
Jeremy Soller authored
-
- Oct 07, 2018
-
-
jD91mZM2 authored
-
- Aug 12, 2018
-
-
jD91mZM2 authored
-
- Aug 09, 2018
-
-
jD91mZM2 authored
-
- Jul 22, 2018
-
-
jD91mZM2 authored
-
- Jun 27, 2018
-
-
- May 11, 2018
-
-
Alex Lyon authored
-
- Mar 21, 2018
-
-
Paul Sajna authored
-
- Mar 18, 2018
-
-
Justin Raymond authored
-