Closed davidchisnall closed 5 months ago
Libc++ uses __builtin_strlen to avoid including string.h. This is expanded to a call to strlen in clang, but with the wrong calling convention.
__builtin_strlen
string.h
strlen
Fixes #29
Libc++ uses
__builtin_strlen
to avoid includingstring.h
. This is expanded to a call tostrlen
in clang, but with the wrong calling convention.Fixes #29