mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 00:30:07 +00:00
3331899af3
* db2/compat.h: Allow EFTYPE being defined. * sysdeps/unix/bsd/bits/signum.h: Add definition for SIG_HOLD. * sysdeps/unix/bsd/ulimit.c: Include <ulimit.h>. * sysdeps/mach/hurd/bits/fcntl.h: Add O_LARGEFILE. * sysdeps/mach/bits/libc-lock.h: Fix typo. (__libc_once): Correctly unlock semaphore. * sysdeps/mach/hurd/dl-sysdep.c: Include <elf/ldsodefs.h>. * sysdeps/unix/bsd/getpt.c: Fix typo. Patches by UCHIYAMA Yasushi <uch@ddd.scei.sony.co.jp>. 1998-03-31 Ulrich Drepper <drepper@cygnus.com>
13 lines
231 B
C
13 lines
231 B
C
/* Compatibility gunk for the db library. */
|
|
|
|
#include <sys/types.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);
|