You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
@@ -8,10 +8,6 @@ using namespace std;
|
|||||||
|
|
||||||
#ifdef USE_CRT0
|
#ifdef USE_CRT0
|
||||||
__BEGIN_DECLS
|
__BEGIN_DECLS
|
||||||
int tfp_vsscanf(const char *s, const char *fmt, va_list args);
|
|
||||||
int vsscanf(const char *s, const char *fmt, va_list args) {
|
|
||||||
return tfp_vsscanf(s, fmt, args);
|
|
||||||
}
|
|
||||||
int musl_vfprintf(FILE *stream, const char *format, va_list arg);
|
int musl_vfprintf(FILE *stream, const char *format, va_list arg);
|
||||||
int vfprintf(FILE *stream, const char *format, va_list arg) {
|
int vfprintf(FILE *stream, const char *format, va_list arg) {
|
||||||
return musl_vfprintf(stream, format, arg);
|
return musl_vfprintf(stream, format, arg);
|
||||||
|
|||||||
2
native/src/external/crt0
vendored
2
native/src/external/crt0
vendored
Submodule native/src/external/crt0 updated: 1602918648...795cab5ab6
@@ -13,9 +13,9 @@ using namespace std;
|
|||||||
|
|
||||||
#ifdef USE_CRT0
|
#ifdef USE_CRT0
|
||||||
__BEGIN_DECLS
|
__BEGIN_DECLS
|
||||||
int tfp_vfprintf(FILE *stream, const char *format, va_list arg);
|
int tiny_vfprintf(FILE *stream, const char *format, va_list arg);
|
||||||
int vfprintf(FILE *stream, const char *format, va_list arg) {
|
int vfprintf(FILE *stream, const char *format, va_list arg) {
|
||||||
return tfp_vfprintf(stream, format, arg);
|
return tiny_vfprintf(stream, format, arg);
|
||||||
}
|
}
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user