Skip to content

Instantly share code, notes, and snippets.

@saiccoumar
Last active January 12, 2024 21:14
Show Gist options
  • Save saiccoumar/619d618b67f37269d80b85e29d2eeda1 to your computer and use it in GitHub Desktop.
Save saiccoumar/619d618b67f37269d80b85e29d2eeda1 to your computer and use it in GitHub Desktop.
vfprintf.c
...
extern int
__vfprintf (FILE *fp, const char *format, va_list ap)
{
return __vfprintf_internal (fp, format, ap, 0);
}
// source: https://github.com/bminor/glibc/blob/master/stdio-common/vfprintf.c
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment