comparison lfg.c @ 990:3d83c38f150e libavutil

lfg: add missing includes
author mru
date Sat, 10 Jul 2010 00:40:55 +0000
parents 4d9ad0ed07d0
children
comparison
equal deleted inserted replaced
989:732bb5b10aec 990:3d83c38f150e
18 * License along with FFmpeg; if not, write to the Free Software 18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22 #include <inttypes.h> 22 #include <inttypes.h>
23 #include <limits.h>
24 #include <math.h>
23 #include "lfg.h" 25 #include "lfg.h"
24 #include "md5.h" 26 #include "md5.h"
25 #include "intreadwrite.h" 27 #include "intreadwrite.h"
26 #include "attributes.h" 28 #include "attributes.h"
27 29