]> git.sesse.net Git - vlc/blobdiff - modules/visualization/galaktos/eval.c
Preferences: don't show empty boxes ('zoom' box bug)
[vlc] / modules / visualization / galaktos / eval.c
index 7ed56cae67d974e6e283caf634c4e9560f2abdaa..601df084663abdf31fff64baa6311cd6dc7b7494 100644 (file)
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-
+#include <stdlib.h>
 
 /* Evaluation Code */
 
 #include <stdio.h>
-#include <stdlib.h>
 #include "common.h"
 #include "fatal.h"
 
@@ -49,7 +48,7 @@ static inline double eval_prefun_expr(prefun_expr_t * prefun_expr);
 static inline double eval_val_expr(val_expr_t * val_expr);
 
 
-inline double eval_gen_expr(gen_expr_t * gen_expr) {
+double eval_gen_expr(gen_expr_t * gen_expr) {
   double l;
 
   if (gen_expr == NULL)