Update.
[glibc.git] / db2 / compat.h
blob86909aeb1304a0c00f9ee8056c59aaa969b14778
1 /* Compatibility gunk for the db library. */
3 #include <sys/types.h>
4 #include <errno.h>
6 #ifndef EFTYPE
7 # define EFTYPE EINVAL
8 #endif
10 /* Emulate Solaris llseek(). */
11 typedef loff_t offset_t;
13 extern int llseek (int fd, loff_t offset, int whence);