glibc/db2/compat.h

14 lines
250 B
C

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