diff options
| author | Evan Lojewski <github@meklort.com> | 2020-10-24 08:25:59 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-24 08:25:59 -0600 |
| commit | 767b28537a01c8dd0171a8f8fc2f817104028366 (patch) | |
| tree | 4c1f0a3d95bceb7e98d3bead2589f266cbee553c /libs/printf/printf.c | |
| parent | 27f308091b5b1ae093a5f763a3bc8b9d5b1e6adf (diff) | |
| download | bcm5719-ortega-767b28537a01c8dd0171a8f8fc2f817104028366.tar.gz bcm5719-ortega-767b28537a01c8dd0171a8f8fc2f817104028366.zip | |
builds: Add Microsoft's SDL and banned API list (#148)
Diffstat (limited to 'libs/printf/printf.c')
| -rw-r--r-- | libs/printf/printf.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libs/printf/printf.c b/libs/printf/printf.c index 6217c26..b37ce1f 100644 --- a/libs/printf/printf.c +++ b/libs/printf/printf.c @@ -1007,15 +1007,6 @@ int printf_(const char *format, ...) return ret; } -int sprintf_(char *buffer, const char *format, ...) -{ - va_list va; - va_start(va, format); - const int ret = _vsnprintf(_out_buffer, buffer, (size_t)-1, format, va); - va_end(va); - return ret; -} - int snprintf_(char *buffer, size_t count, const char *format, ...) { va_list va; |

