Revert "Roll NDK to r11c and extract it into its own repository."
[android_tools.git] / ndk / sources / android / support / src / musl-stdio / printf.c
blobcebfe404fb97d465545020a76ba9b928cfcbb15a
1 #include <stdio.h>
2 #include <stdarg.h>
4 int printf(const char *restrict fmt, ...)
6 int ret;
7 va_list ap;
8 va_start(ap, fmt);
9 ret = vfprintf(stdout, fmt, ap);
10 va_end(ap);
11 return ret;