Fix warnings:
authorDiego Biurrun <diego@biurrun.de>
Wed, 4 Oct 2006 13:51:12 +0000 (13:51 +0000)
committerDiego Biurrun <diego@biurrun.de>
Wed, 4 Oct 2006 13:51:12 +0000 (13:51 +0000)
cs_test.c:62: warning: return type defaults to 'int'
cs_test.c:64: warning: implicit declaration of function 'memalign'

Originally committed as revision 20036 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

libswscale/cs_test.c

index 5778a146bafc0cc95253dd34fe2233eb3fe4e0be..9ffe1ec469e82e827b486f33175a7d028cf8d1db 100644 (file)
@@ -21,6 +21,7 @@
 #include <unistd.h>
 #include <stdlib.h>
 #include <inttypes.h>
+#include <malloc.h>
 
 #include "swscale.h"
 #include "rgb2rgb.h"
@@ -58,7 +59,7 @@ static char *args_parse(int argc, char *argv[])
     return argv[optind];
 }
 
-main(int argc, char **argv)
+int main(int argc, char **argv)
 {
        int i, funcNum;
        uint8_t *srcBuffer= (uint8_t*)memalign(128, SIZE);