comparison liba52/compare.c @ 25475:92162fd825d3

Add missing #include, fixes compare.c:18: warning: implicit declaration of function ¡Æexit¡Ç compare.c:18: warning: incompatible implicit declaration of built-in function ¡Æexit¡Ç
author diego
date Sat, 22 Dec 2007 17:13:17 +0000
parents 39031de3757e
children fd4b42040150
comparison
equal deleted inserted replaced
25474:39031de3757e 25475:92162fd825d3
1 // File written by Michael Niedermayer and it is under GPL. 1 // File written by Michael Niedermayer and it is under GPL.
2 // Simple file compare program, it finds the number of rounding errors 2 // Simple file compare program, it finds the number of rounding errors
3 // and dies if there is too large an error ( ABS(a-b)>1 ). 3 // and dies if there is too large an error ( ABS(a-b)>1 ).
4 4
5 #include <stdio.h> 5 #include <stdio.h>
6 #include <stdlib.h>
6 7
7 // FIXME: No checks but it is just for debugging so who cares ;) 8 // FIXME: No checks but it is just for debugging so who cares ;)
8 9
9 int main(int argc, char **argv) 10 int main(int argc, char **argv)
10 { 11 {