diff tremor/block.c @ 24796:8dfda4d651ec

_vorbis_block_alloc() is used w/o prototype, this will crash on ia64. Add a header file with the function prototype to address this issue. This has the positive side effect of fixing a couple of implicit declaration warnings. The problem was originally reported as Debian bug 447278. patch by Dann Frazier and Andrea Mennucci, mennucc1 debian org
author diego
date Sat, 20 Oct 2007 22:41:24 +0000
parents cd6b211be811
children e83eef58b30a
line wrap: on
line diff
--- a/tremor/block.c	Sat Oct 20 22:28:14 2007 +0000
+++ b/tremor/block.c	Sat Oct 20 22:41:24 2007 +0000
@@ -25,6 +25,7 @@
 #include "window.h"
 #include "registry.h"
 #include "misc.h"
+#include "block.h"
 
 static int ilog(unsigned int v){
   int ret=0;