- Mar 17, 2019
-
-
Jeremy Soller authored
-
- Mar 05, 2019
-
-
Jeremy Soller authored
Fix conditional compilation of sys/mman.h See merge request redox-os/relibc!201
-
- Mar 04, 2019
-
-
jD91mZM2 authored
Aarch64 prep redux See merge request redox-os/relibc!202
-
- Mar 03, 2019
-
-
Robin Randhawa authored
Without this the relibc tests would break. With this the relibc tests pass and formerly breaking builds (such as uutils -> onig_sys) pass.
-
Robin Randhawa authored
Typically with libc implementations, wchar_t and co are either defined entirely by the libc or, under libc's arrangement, by headers supplied by the compiler. Things like dlmalloc in relibc need these definitions from relibc itself and that's already already furnished by relibc's stddef.h. These additional definitions here are redundant and collide with compiler headers - for example: onig_sys (something that uutils depends on) breaks. Instead, this patch makes the compiler headers define things appropriately.
-
Robin Randhawa authored
For AArch64, the ring crate depends on the presence of this header and a definition of getauxval.
-
Robin Randhawa authored
The pre-index operator ('!') was missing at the end of the stp instruction. As a result, the stack pointer wasn't updated after the store of the 64-bit pair and the stored values were basically lost when follow on code used the stack for later store ops.
-
Angelo Bulfone authored
-
- Feb 28, 2019
-
-
jD91mZM2 authored
Implement swab See merge request redox-os/relibc!187
-
jD91mZM2 authored
implements wcsrchr from wchar.h See merge request redox-os/relibc!197
-
jD91mZM2 authored
add calloc integer overflow check See merge request redox-os/relibc!188
-
jD91mZM2 authored
Change LONG_BIT definition, fixes #148 Closes #148 See merge request redox-os/relibc!198
-
Paul Sajna authored
-
- 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
-
Jeremy Soller authored
Implements wcscspn function from wchar.h See merge request redox-os/relibc!196
-
- Feb 22, 2019
-
-
Emma Turner authored
-
Nagy Tibor authored
-
Nagy Tibor authored
-
Jeremy Soller 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
-
-
Jeremy Soller authored
General test cleanups See merge request redox-os/relibc!193
-
Jeremy Soller authored
unistd: Generate correct C defines for PATH_SEPARATOR See merge request redox-os/relibc!194
-
Nagy Tibor authored
-
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
-
Jeremy Soller authored
tests: set C11, enable pedantic warnings, fix GCC and Clang warnings See merge request redox-os/relibc!192
-
Nagy Tibor authored
-