summaryrefslogtreecommitdiffstats
path: root/release/sysinstall/install.c
diff options
context:
space:
mode:
Diffstat (limited to 'release/sysinstall/install.c')
-rw-r--r--release/sysinstall/install.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/release/sysinstall/install.c b/release/sysinstall/install.c
index bc6937b..dcb5eb5 100644
--- a/release/sysinstall/install.c
+++ b/release/sysinstall/install.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id$
+ * $Id: install.c,v 1.1.1.1 1995/04/27 12:50:35 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -43,14 +43,17 @@
#include "sysinstall.h"
-void
-installExpress(void)
+int
+installCustom(void)
{
- msgInfo("Doing an express installation");
+ msgInfo("Installating the system custom");
+ return 0;
}
-void
-installCustom(void)
+int
+installExpress(void)
{
- msgInfo("Doing a custom installation");
+ msgInfo("Installating the system express");
+ return 0;
}
+
OpenPOWER on IntegriCloud