mirror of
https://github.com/justinian/jsix.git
synced 2025-12-11 08:54:31 -08:00
[libc] Update errno and strto* files for compatibility
Most of the strto* functions are only stubbed out, but they're there for things that link to them but don't call them.
This commit is contained in:
@@ -23,3 +23,5 @@ int memcmp(const void *s1, const void *s2, size_t n) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
extern "C" int bcmp(const void *s1, const void *s2, size_t n)
|
||||
__attribute__ ((weak, alias ("memcmp")));
|
||||
|
||||
Reference in New Issue
Block a user