From 44ac4c42ff8e41edac31351eb1b694c889357baf Mon Sep 17 00:00:00 2001
From: Tim Terriberry <tterribe@xiph.org>
Date: Thu, 14 Oct 2010 01:45:30 +0000
Subject: [PATCH] Fix iseeking_example #includes.

Unless you're using the autotools build system, <vorbis/...> doesn't exist, and
 could pull out-of-date system headers anyway.
ivorbisfile_example had the same problem, but that fix was accidentally
 included in r17526.


git-svn-id: https://svn.xiph.org/trunk/Tremor@17532 0101bb08-14d6-0310-b084-bc0e0c8e3800
---
 iseeking_example.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/iseeking_example.c b/iseeking_example.c
index aaf0d39..533d7bd 100644
--- a/iseeking_example.c
+++ b/iseeking_example.c
@@ -18,8 +18,8 @@
 
 #include <stdlib.h>
 #include <stdio.h>
-#include <vorbis/ivorbiscodec.h>
-#include <vorbis/ivorbisfile.h>
+#include "ivorbiscodec.h"
+#include "ivorbisfile.h"
 
 #ifdef _WIN32 /* We need the following two to set stdin/stdout to binary */
 # include <io.h>
-- 
GitLab