summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorjbj <devnull@localhost>1999-12-01 20:00:39 +0000
committerjbj <devnull@localhost>1999-12-01 20:00:39 +0000
commit8da3fc6db1926f13aceb842860fbfd7d5a2871a5 (patch)
treec5eec7861c15ddf7b0d1ddacb7fdac1a6d8d40b4 /lib
parent8289346751e2d994a83416e90a67b5c96f4b07cd (diff)
downloadrpm-8da3fc6db1926f13aceb842860fbfd7d5a2871a5.tar.gz
rpm-8da3fc6db1926f13aceb842860fbfd7d5a2871a5.tar.bz2
rpm-8da3fc6db1926f13aceb842860fbfd7d5a2871a5.zip
Solaris fiddles.
CVS patchset: 3449 CVS date: 1999/12/01 20:00:39
Diffstat (limited to 'lib')
-rw-r--r--lib/rpmio.h9
-rw-r--r--lib/url.c4
2 files changed, 8 insertions, 5 deletions
diff --git a/lib/rpmio.h b/lib/rpmio.h
index 23ec78f7d..1262095c0 100644
--- a/lib/rpmio.h
+++ b/lib/rpmio.h
@@ -16,9 +16,9 @@ extern "C" {
#if HAVE_LIBIO_H
#include <libio.h>
#else
-typedef ssize_t cookie_read_function_t (void *cookie, void *buf, size_t nbytes);
-typedef ssize_t cookie_write_function_t (void *cookie, const void *buf, size_t nbytes);
-typedef int cookie_seek_function_t (void *cookie, fpos_t *pos, int whence);
+typedef ssize_t cookie_read_function_t (void *cookie, char *buf, size_t nbytes);
+typedef ssize_t cookie_write_function_t (void *cookie, const char *buf, size_t nbytes);
+typedef int cookie_seek_function_t (void *cookie, off_t offset, int whence);
typedef int cookie_close_function_t (void *cookie);
typedef struct {
cookie_read_function_t *read;
@@ -26,6 +26,9 @@ typedef struct {
cookie_seek_function_t *seek;
cookie_close_function_t *close;
} cookie_io_functions_t;
+FILE * fopencookie (void *magic_cookie, const char * modes,
+ cookie_io_functions_t io_funcs);
+#define fopencookie(_a, _b, _c) (NULL)
#endif
typedef /*@null@*/ FD_t fdio_ref_function_t ( /*@only@*/ void * cookie,
diff --git a/lib/url.c b/lib/url.c
index adfb776da..74d2eac0f 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -66,7 +66,7 @@ DBGREFS(0, (stderr, "--> url %p -- %d %s at %s:%u\n", u, u->nrefs, msg, file, li
return u;
if (u->ctrl) {
#ifndef NOTYET
- FILE * fp = fdGetFp(u->ctrl);
+ void * fp = fdGetFp(u->ctrl);
if (fp) {
fdPush(u->ctrl, fpio, fp, -1); /* Push fpio onto stack */
Fclose(u->ctrl);
@@ -83,7 +83,7 @@ DBGREFS(0, (stderr, "--> url %p -- %d %s at %s:%u\n", u, u->nrefs, msg, file, li
}
if (u->data) {
#ifndef NOTYET
- FILE * fp = fdGetFp(u->data);
+ void * fp = fdGetFp(u->data);
if (fp) {
fdPush(u->data, fpio, fp, -1); /* Push fpio onto stack */
Fclose(u->data);