summaryrefslogtreecommitdiff
path: root/include/FLAC
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2007-09-08 22:49:07 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2007-09-08 22:49:07 +0000
commit17af340739f8be2afc3ebab256230f9bfe097d9c (patch)
treeb10d3cfb1666fd040b352b9c3ec03c87dce6b7f2 /include/FLAC
parente32fad5d9b1a8918dc4577b9e4fa967e376e2f3d (diff)
downloadflac-17af340739f8be2afc3ebab256230f9bfe097d9c.tar.gz
fix #include for off_t (SF#1786225: https://sourceforge.net/tracker/index.php?func=detail&aid=1786225&group_id=13478&atid=313478)
Diffstat (limited to 'include/FLAC')
-rw-r--r--include/FLAC/metadata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/FLAC/metadata.h b/include/FLAC/metadata.h
index f371f96f..8b833a45 100644
--- a/include/FLAC/metadata.h
+++ b/include/FLAC/metadata.h
@@ -32,7 +32,7 @@
#ifndef FLAC__METADATA_H
#define FLAC__METADATA_H
-#include <stdio.h> /* for off_t */
+#include <sys/types.h> /* for off_t */
#include "export.h"
#include "callback.h"
#include "format.h"