$OpenBSD: patch-src_od-fs_uae_host_cpp,v 1.1.1.1 2012/11/22 23:45:20 edd Exp $

fseeko() naming the same as FreeBSD on OpenBSD

--- src/od-fs/uae_host.cpp.orig	Tue Nov 20 00:45:30 2012
+++ src/od-fs/uae_host.cpp	Tue Nov 20 00:46:46 2012
@@ -12,7 +12,7 @@ int64_t uae_ftello64(FILE *stream) {
     return ftello64(stream);
 #elif MACOSX
     return ftello(stream);
-#elif FREEBSD
+#elif defined(FREEBSD) || defined(OPENBSD)
     return ftello(stream);
 #else
     return ftello64(stream);
@@ -24,7 +24,7 @@ int uae_fseeko64(FILE *stream, int64_t offset, int whe
     return fseeko64(stream, offset, whence);
 #elif MACOSX
     return fseeko(stream, offset, whence);
-#elif FREEBSD
+#elif defined(FREEBSD) || defined(OPENBSD)
     return fseeko(stream, offset, whence);
 #else
     return fseeko64(stream, offset, whence);
