mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-20 12:00:06 +00:00
11 lines
208 B
C
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);
|