repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update. Old logs are in ChangeLog.7.
[glibc.git]
/
db2
/
compat.h
blob
86909aeb1304a0c00f9ee8056c59aaa969b14778
1
/* Compatibility gunk for the db library. */
2
3
#include <sys/types.h>
4
#include <errno.h>
5
6
#ifndef EFTYPE
7
# define EFTYPE EINVAL
8
#endif
9
10
/* Emulate Solaris llseek(). */
11
typedef
loff_t offset_t
;
12
13
extern
int
llseek
(
int
fd
,
loff_t offset
,
int
whence
);