- Mar 28, 2019
-
-
jD91mZM2 authored
-
Jeremy Soller authored
-
- Feb 28, 2019
-
- Feb 25, 2019
-
-
Emma Turner authored
-
Nagy Tibor authored
-
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
-
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 22, 2019
-
-
Emma Turner authored
-
Nagy Tibor authored
-
Nagy Tibor authored
-
- Feb 21, 2019
-
-
Nagy Tibor authored
-
Nagy Tibor authored
-
Nagy Tibor authored
-
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 19, 2019
-
-
Nagy Tibor authored
-
Nagy Tibor authored
iscntrl: Didn't handle the EOF macro correctly isgraph: Didn't handle '~' (tilde) correctly ispunct: Several issues
-
- Feb 02, 2019
-
-
Peter Limkilde Svendsen authored
-
Peter Limkilde Svendsen authored
-
- Jan 28, 2019
-
-
Jeremy Soller authored
-
- Jan 22, 2019
-
-
Jeremy Soller authored
-
- Jan 13, 2019
-
-
Jeremy Soller authored
-
Jeremy Soller authored
-
- Dec 17, 2018
-
-
lmiskiew authored
-
- Dec 14, 2018
-
-
Jeremy Soller authored
-
- Dec 02, 2018
-
-
Jeremy Soller authored
-
- Dec 01, 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
-
- Nov 25, 2018
-
-
Jeremy Soller authored
-
- Nov 23, 2018
-
-
Nagy Tibor authored
-
- Nov 18, 2018
-
-
Nagy Tibor authored
-
- Nov 17, 2018
-
-
jD91mZM2 authored
Don't rely on integer wrapping in ctype and fix strcasecmp on non-alphabetic characters
-
- Nov 05, 2018
-
-
Michał Zwonek authored
Implemented the following calls according to http://pubs.opengroup.org/onlinepubs/7908799/xsh/libgen.h.html - char* basename(char*) - char* dirname(char*) Added test suit for the implemented calls. Issue: redox-os/relibc#134
-
- Oct 27, 2018
-
-
Nagy Tibor authored
Based on what musl does.
-