summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/media.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-05-01 21:56:32 +0000
committerjkh <jkh@FreeBSD.org>1995-05-01 21:56:32 +0000
commite3598880e349017837533ba4e1967b87751ddeff (patch)
tree66e8a7a94085501f4c4c4f035003b8f42ba879d5 /usr.sbin/sysinstall/media.c
parentd0d51976ab3315b9d155a3551f319e36b88b260c (diff)
downloadFreeBSD-src-e3598880e349017837533ba4e1967b87751ddeff.zip
FreeBSD-src-e3598880e349017837533ba4e1967b87751ddeff.tar.gz
Commit my latest changes before having a nap. Still not close to done,
nor is it in sync with my working sources, but it leaves me less CVS hassles to bring in the new files at this time. Still no documentation to translate quite yet, but soon. This stuff is actually very close now.
Diffstat (limited to 'usr.sbin/sysinstall/media.c')
-rw-r--r--usr.sbin/sysinstall/media.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.sbin/sysinstall/media.c b/usr.sbin/sysinstall/media.c
index b6febca..4e9b72a 100644
--- a/usr.sbin/sysinstall/media.c
+++ b/usr.sbin/sysinstall/media.c
@@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
- * $Id: media.c,v 1.1 1995/04/27 18:05:10 jkh Exp $
+ * $Id: media.c,v 1.2 1995/04/29 19:33:02 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -46,7 +46,7 @@
* be a CD.
*/
int
-mediaSetCDROM(void)
+mediaSetCDROM(char *str)
{
return 0;
}
@@ -56,7 +56,7 @@ mediaSetCDROM(void)
* be a floppy
*/
int
-mediaSetFloppy(void)
+mediaSetFloppy(char *str)
{
return 0;
}
@@ -66,7 +66,7 @@ mediaSetFloppy(void)
* be a DOS partition.
*/
int
-mediaSetDOS(void)
+mediaSetDOS(char *str)
{
return 0;
}
@@ -76,7 +76,7 @@ mediaSetDOS(void)
* be a tape drive.
*/
int
-mediaSetTape(void)
+mediaSetTape(char *str)
{
return 0;
}
@@ -86,7 +86,7 @@ mediaSetTape(void)
* be an ftp server
*/
int
-mediaSetFTP(void)
+mediaSetFTP(char *str)
{
return 0;
}
@@ -96,7 +96,7 @@ mediaSetFTP(void)
* be some sort of mounted filesystem (it's also mounted at this point)
*/
int
-mediaSetFS(void)
+mediaSetFS(char *str)
{
return 0;
}
OpenPOWER on IntegriCloud