summaryrefslogtreecommitdiff
path: root/db2/compat.h
diff options
context:
space:
mode:
Diffstat (limited to 'db2/compat.h')
-rw-r--r--db2/compat.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/db2/compat.h b/db2/compat.h
deleted file mode 100644
index 51008afcf0..0000000000
--- a/db2/compat.h
+++ /dev/null
@@ -1,19 +0,0 @@
-/* Compatibility gunk for the db library. */
-
-#include <sys/types.h>
-#include <errno.h>
-
-#include <sys/stat.h>
-#ifdef _STATBUF_ST_BLKSIZE
-# define HAVE_ST_BLKSIZE
-#endif
-
-
-#ifndef EFTYPE
-# define EFTYPE EINVAL
-#endif
-
-/* Emulate Solaris llseek(). */
-typedef loff_t offset_t;
-
-extern int llseek (int fd, loff_t offset, int whence);