blob: 78021126abd7500ebcb2ffa519dfc03c53f49559 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-quote.c,v 1.1 2013/03/02 17:59:41 joerg Exp $
--- quote.c.orig 1995-10-19 15:20:24.000000000 +0000
+++ quote.c
@@ -63,6 +63,8 @@
#include "list.h"
#include "str.h"
+static void create_quote_dialog(void);
+
struct {
int host;
struct entry_link *head;
@@ -194,7 +196,7 @@ XtPointer call_data;
/*
* create_quote_dialog - Create dialog that prompts for a quoted command.
*/
-create_quote_dialog()
+static void create_quote_dialog(void)
{
static int initialized = False;
int i;
|