$NetBSD$ --- quicktime/util.c.orig 2010-01-29 06:51:49.000000000 +0000 +++ quicktime/util.c @@ -1,5 +1,4 @@ #include -#include #include #include #include @@ -15,9 +14,9 @@ int64_t quicktime_get_file_length(char *path) { - struct stat64 status; - if(stat64(path, &status)) - perror("quicktime_get_file_length stat64:"); + struct stat status; + if(stat(path, &status)) + perror("quicktime_get_file_length stat:"); return status.st_size; }