| Age | Commit message (Expand) | Author | Files | Lines |
| 2025-10-29 | tools/nolibc: add option to disable runtime | Benjamin Berg | 1 | -0/+2 |
| 2025-05-21 | tools/nolibc: add abs() and friends | Thomas Weißschuh | 1 | -0/+18 |
| 2025-05-21 | tools/nolibc: include nolibc.h early from all header files | Thomas Weißschuh | 1 | -3/+3 |
| 2025-04-19 | tools/nolibc: move getauxval() to sys/auxv.h | Thomas Weißschuh | 1 | -26/+0 |
| 2025-04-19 | tools/nolibc: fix integer overflow in i{64,}toa_r() and | Thomas Weißschuh | 1 | -2/+2 |
| 2025-02-03 | tools/nolibc: add prototypes for non-static functions | Thomas Weißschuh | 1 | -0/+1 |
| 2024-06-29 | tools/nolibc: implement strtol() and friends | Thomas Weißschuh | 1 | -0/+109 |
| 2024-04-10 | tools/nolibc/stdlib: fix memory error in realloc() | Brennan Xavier McManus | 1 | -1/+1 |
| 2023-08-23 | tools/nolibc: completely remove optional environ support | Thomas Weißschuh | 1 | -10/+2 |
| 2023-06-09 | tools/nolibc: use __inline__ syntax | Thomas Weißschuh | 1 | -9/+9 |
| 2023-01-10 | nolibc/stdlib: Implement `getauxval(3)` function | Ammar Faizi | 1 | -0/+27 |
| 2023-01-09 | tools/nolibc: fix missing includes causing build issues at -O0 | Willy Tarreau | 1 | -0/+3 |
| 2022-06-20 | tools/nolibc/stdlib: Support overflow checking for older compiler versions | Ammar Faizi | 1 | -4/+3 |
| 2022-04-20 | tools/nolibc/stdlib: Implement `malloc()`, `calloc()`, `realloc()` and `free()` | Ammar Faizi | 1 | -0/+81 |
| 2022-04-20 | tools/nolibc/stdlib: only reference the external environ when inlined | Willy Tarreau | 1 | -7/+15 |
| 2022-04-20 | tools/nolibc/stdlib: add a simple getenv() implementation | Willy Tarreau | 1 | -0/+23 |
| 2022-04-20 | tools/nolibc/stdlib: implement abort() | Willy Tarreau | 1 | -0/+8 |
| 2022-04-20 | tools/nolibc/signal: move raise() to signal.h | Willy Tarreau | 1 | -7/+0 |
| 2022-04-20 | tools/nolibc/unistd: extract msleep(), sleep(), tcsetpgrp() to unistd.h | Willy Tarreau | 1 | -30/+0 |
| 2022-04-20 | tools/nolibc: move exported functions to their own section | Willy Tarreau | 1 | -1/+1 |
| 2022-04-20 | tools/nolibc/stdlib: make raise() use the lower level syscalls only | Willy Tarreau | 1 | -1/+1 |
| 2022-04-20 | tools/nolibc/stdlib: avoid a 64-bit shift in u64toh_r() | Willy Tarreau | 1 | -6/+10 |
| 2022-04-20 | tools/nolibc/stdlib: add utoh() and u64toh() | Willy Tarreau | 1 | -0/+80 |
| 2022-04-20 | tools/nolibc/stdlib: add i64toa() and u64toa() | Willy Tarreau | 1 | -0/+72 |
| 2022-04-20 | tools/nolibc/stdlib: replace the ltoa() function with more efficient ones | Willy Tarreau | 1 | -21/+88 |
| 2022-04-20 | tools/nolibc/stdlib: move ltoa() to stdlib.h | Willy Tarreau | 1 | -0/+32 |
| 2022-04-20 | tools/nolibc/stdlib: extract the stdlib-specific functions to their own file | Willy Tarreau | 1 | -0/+85 |