glibc/db2/compat.h

11 lines
208 B
C

/* Compatibility gunk for the db library. */
#include <sys/types.h>
#define EFTYPE EINVAL
/* Emulate Solaris llseek(). */
typedef loff_t offset_t;
extern int llseek (int fd, loff_t offset, int whence);