aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_install/lib
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1995-08-26 10:15:18 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1995-08-26 10:15:18 +0000
commita50f9f1dfc1d269951bdf509802a0ea7322d58fa (patch)
tree31d831e9d819c7b603ec330c5873176e7014f739 /usr.sbin/pkg_install/lib
parentc65081f32ce326cc34700323d1f9878a9b2b359b (diff)
Notes
Diffstat (limited to 'usr.sbin/pkg_install/lib')
-rw-r--r--usr.sbin/pkg_install/lib/lib.h4
-rw-r--r--usr.sbin/pkg_install/lib/msg.c4
-rw-r--r--usr.sbin/pkg_install/lib/pen.c4
3 files changed, 5 insertions, 7 deletions
diff --git a/usr.sbin/pkg_install/lib/lib.h b/usr.sbin/pkg_install/lib/lib.h
index 4f80cee427d6..a5c2fa531db4 100644
--- a/usr.sbin/pkg_install/lib/lib.h
+++ b/usr.sbin/pkg_install/lib/lib.h
@@ -1,4 +1,4 @@
-/* $Id: lib.h,v 1.16 1995/04/26 15:08:22 jkh Exp $ */
+/* $Id: lib.h,v 1.17 1995/07/30 01:44:45 ache Exp $ */
/*
* FreeBSD install - a package for the installation and maintainance
@@ -109,7 +109,7 @@ void cleanup(int);
char *make_playpen(char *, size_t);
void leave_playpen(void);
char *where_playpen(void);
-long min_free(char *);
+size_t min_free(char *);
/* String */
char *get_dash_string(char **);
diff --git a/usr.sbin/pkg_install/lib/msg.c b/usr.sbin/pkg_install/lib/msg.c
index 460183e8a86e..d95e498637dd 100644
--- a/usr.sbin/pkg_install/lib/msg.c
+++ b/usr.sbin/pkg_install/lib/msg.c
@@ -1,5 +1,5 @@
#ifndef lint
-static const char *rcsid = "$Id: msg.c,v 1.4 1994/06/01 05:14:19 asami Exp $";
+static const char *rcsid = "$Id: msg.c,v 1.5 1995/05/30 03:50:06 rgrimes Exp $";
#endif
/*
@@ -99,5 +99,3 @@ y_or_n(Boolean def, const char *msg, ...)
fclose(tty) ;
return (ch == 'Y') ? TRUE : FALSE;
}
-
-
diff --git a/usr.sbin/pkg_install/lib/pen.c b/usr.sbin/pkg_install/lib/pen.c
index febf2656ac4e..b084cadb16cf 100644
--- a/usr.sbin/pkg_install/lib/pen.c
+++ b/usr.sbin/pkg_install/lib/pen.c
@@ -1,5 +1,5 @@
#ifndef lint
-static const char *rcsid = "$Id: pen.c,v 1.14 1995/08/06 03:21:04 jkh Exp $";
+static const char *rcsid = "$Id: pen.c,v 1.15 1995/08/17 00:36:06 jkh Exp $";
#endif
/*
@@ -118,7 +118,7 @@ where_playpen(void)
return NULL;
}
-long
+size_t
min_free(char *tmpdir)
{
struct statfs buf;