Skip to content

Commit e4d091c

Browse files
committed
libvbr/vbr.c: include <stdio.h> for vsnprintf()
This fixes an implicit declaration error with newer compilers and on musl where stdio.h does not incidentally get included by some other header. Bug: https://bugs.gentoo.org/936591
1 parent 551ab38 commit e4d091c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

libvbr/vbr.c

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include <arpa/inet.h>
1919
#include <arpa/nameser.h>
2020
#include <netdb.h>
21+
#include <stdio.h>
2122
#include <stdlib.h>
2223
#include <string.h>
2324
#include <errno.h>

0 commit comments

Comments
 (0)