You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-misc/bb/files/bb-1.3.0_rc1-fix-protos.patch

14 lines
310 B

Fixes warning:
main.c: In function 'load_song':
main.c:56:23: warning: incompatible implicit declaration of built-in function 'strlen'
--- a/main.c
+++ b/main.c
@@ -21,6 +21,7 @@
* 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+#include <string.h>
#include <unistd.h>
#include "timers.h"
#include "bb.h"