summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2001-03-05 10:28:10 +0000
committerKris Kennaway <kris@FreeBSD.org>2001-03-05 10:28:10 +0000
commitc2e1d301af3c7590bf726d45ba62ab6cc252c043 (patch)
treebbc2d72b7960fd6b0d9d9948ccaa4f633e1a0ddf /gnu
parent2537fd902bbe1a4cf741be23670760c32f22afb6 (diff)
downloadsrc-test2-c2e1d301af3c7590bf726d45ba62ab6cc252c043.tar.gz
src-test2-c2e1d301af3c7590bf726d45ba62ab6cc252c043.zip
Notes
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/dialog/dialog.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/gnu/usr.bin/dialog/dialog.c b/gnu/usr.bin/dialog/dialog.c
index e99b2aedd252..ecb4f1d414a9 100644
--- a/gnu/usr.bin/dialog/dialog.c
+++ b/gnu/usr.bin/dialog/dialog.c
@@ -17,6 +17,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
+ * $FreeBSD$
+ *
*
* HISTORY:
*
@@ -81,15 +83,17 @@
*
*/
+#include <sys/types.h>
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/wait.h>
#include <dialog.h>
-void Usage(unsigned char *name);
+void Usage(char *name);
-int main(int argc, unsigned char *argv[])
+int main(int argc, char *argv[])
{
int offset = 0, clear_screen = 0, end_common_opts = 0, retval;
unsigned char *title = NULL;
@@ -367,9 +371,9 @@ int main(int argc, unsigned char *argv[])
exit(-1);
}
init_dialog();
- retval = dialog_tree(argv+offset+7, argc-offset-7, *argv[offset+2],
- title, argv[offset+3], atoi(argv[offset+4]), atoi(argv[offset+5]),
- atoi(argv[offset+6]), &tresult);
+ retval = dialog_tree((unsigned char **)argv+offset+7, argc-offset-7,
+ *argv[offset+2], title, argv[offset+3], atoi(argv[offset+4]),
+ atoi(argv[offset+5]), atoi(argv[offset+6]), &tresult);
dialog_update();
if (!retval)
@@ -390,7 +394,7 @@ int main(int argc, unsigned char *argv[])
/*
* Print program usage
*/
-void Usage(unsigned char *name)
+void Usage(char *name)
{
fprintf(stderr, "\
\ndialog version 0.3, by Savio Lam (lam836@cs.cuhk.hk).\