We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c01efb commit 899ccc5Copy full SHA for 899ccc5
libs/pal/libuv/pal.c
@@ -340,6 +340,14 @@ int am_pal_printf(const char *fmt, ...) {
340
return rc;
341
}
342
343
+int am_pal_printf_unsafe(const char *fmt, ...) {
344
+ va_list args;
345
+ va_start(args, fmt);
346
+ int rc = vprintf(fmt, args);
347
+ va_end(args);
348
+ return rc;
349
+}
350
+
351
int am_pal_printff(const char *fmt, ...) {
352
va_list args;
353
va_start(args, fmt);
0 commit comments