diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-09-24 04:56:51 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:38:49 -0500 |
commit | d98b913aa9a0dd40a9373d65882f1cb742d033af (patch) | |
tree | 6746c6fc2e9418d8a81a90f176bf691093d1ad81 /source4/lib/tdb/common | |
parent | 5860aef9cd53da572bef1b86a62a3a5e86da84b0 (diff) | |
download | samba-d98b913aa9a0dd40a9373d65882f1cb742d033af.tar.gz samba-d98b913aa9a0dd40a9373d65882f1cb742d033af.tar.bz2 samba-d98b913aa9a0dd40a9373d65882f1cb742d033af.zip |
r10466: work around missing pread/pwrite declaration on openbsd
(This used to be commit e615f36733966f9992670e3650fbe9b20d7d218c)
Diffstat (limited to 'source4/lib/tdb/common')
-rw-r--r-- | source4/lib/tdb/common/tdb_private.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source4/lib/tdb/common/tdb_private.h b/source4/lib/tdb/common/tdb_private.h index 2b2d6de411..a451dff0af 100644 --- a/source4/lib/tdb/common/tdb_private.h +++ b/source4/lib/tdb/common/tdb_private.h @@ -45,6 +45,14 @@ #include <sys/stat.h> #include "config.h" #include "tdb.h" + +#ifndef HAVE_PREAD_DECL +ssize_t pread(int fd, void *buf, size_t count, off_t offset); +#endif +#ifndef HAVE_PWRITE_DECL +ssize_t pwrite(int fd, const void *buf, size_t count, off_t offset); +#endif + #else #include "includes.h" #include "lib/tdb/include/tdb.h" |