# HG changeset patch # User diego # Date 1159969872 0 # Node ID f837670d269ca8b52219536b94997ef4da3d01d7 # Parent 410311d56c8d07cfe636e0325f806fa85d96342d Fix warnings: cs_test.c:62: warning: return type defaults to 'int' cs_test.c:64: warning: implicit declaration of function 'memalign' diff -r 410311d56c8d -r f837670d269c libswscale/cs_test.c --- a/libswscale/cs_test.c Wed Oct 04 13:41:05 2006 +0000 +++ b/libswscale/cs_test.c Wed Oct 04 13:51:12 2006 +0000 @@ -21,6 +21,7 @@ #include #include #include +#include #include "swscale.h" #include "rgb2rgb.h" @@ -58,7 +59,7 @@ 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);