blob: 878919afe3fecc4df5f33714090ffe5953764673 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
$NetBSD: patch-dirpath.c,v 1.1 2013/03/02 17:59:41 joerg Exp $
--- dirpath.c.orig 1995-10-19 15:20:21.000000000 +0000
+++ dirpath.c
@@ -58,6 +58,9 @@
#include <Xm/Form.h>
#include "xftp.h"
+static void create_dirpath_dialog(int host);
+void update_dirpath(int host);
+
static struct {
Widget w_dialog;
Widget w_form;
@@ -108,8 +111,7 @@ XtPointer call_data;
* create_dirpath_dialog - Create dialog window that displays full
* directory path name.
*/
-create_dirpath_dialog(host)
-int host;
+static void create_dirpath_dialog(int host)
{
Arg args[1];
XmString label;
@@ -187,8 +189,7 @@ int host;
/*
* update_dirpath - Update contents of directory path dialog.
*/
-update_dirpath(host)
-int host;
+void update_dirpath(int host)
{
XmString string;
|