mirror of
https://github.com/fluencelabs/musl
synced 2025-04-25 07:12:15 +00:00
GNU used several extensions that were incompatible with C99 and POSIX, so they used alternate names for the standard functions. The result is that we need these to run standards-conformant programs that were linked with glibc.
16 lines
262 B
C
16 lines
262 B
C
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include "libc.h"
|
|
|
|
int sscanf(const char *restrict s, const char *restrict fmt, ...)
|
|
{
|
|
int ret;
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
ret = vsscanf(s, fmt, ap);
|
|
va_end(ap);
|
|
return ret;
|
|
}
|
|
|
|
weak_alias(sscanf,__isoc99_sscanf);
|