Mercurial
view third_party/raylib/glibc_compat.c @ 282:6bd4a3990696 default tip
Add cross-platform canvas orchestration and typed composer
Enable native ARM dependencies, macOS Copilot orchestration, portable service supervision, CPU dictation, and a shared N-key speak-or-type composer.
Co-authored-by: Copilot <[email protected]>
Copilot-Session: f68442b1-fa8f-46a0-9689-81710613bbd4
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Thu, 20 Aug 2026 20:45:25 -0700 |
| parents | b55c22cff335 |
| children |
line wrap: on
line source
#include <stdarg.h> #include <stdio.h> #include <stdlib.h> // Raylib 6 Linux binaries are built against glibc 2.38's C23 entry points. // Keep older supported hosts working until the official binaries lower their baseline. int __isoc23_sscanf(const char *input, const char *format, ...) { va_list args; va_start(args, format); int result = vsscanf(input, format, args); va_end(args); return result; } long __isoc23_strtol(const char *input, char **end, int base) { return strtol(input, end, base); } unsigned long __isoc23_strtoul(const char *input, char **end, int base) { return strtoul(input, end, base); }