$NetBSD: patch-util_c,v 1.1.1.1 2010/02/02 02:01:54 phonohawk Exp $

--- quicktime/util.c.orig	2010-02-01 08:26:24.000000000 +0000
+++ quicktime/util.c
@@ -1,5 +1,4 @@
 #include <fcntl.h>
-#include <linux/cdrom.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -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;
 }
 
