blob: 5183befd606f93639402b744018b8335cfc0e421 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* 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);
|