From 267265e0dd39435aa950b39e8645563f6b890f4c Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Sun, 6 Nov 2011 08:14:57 +0000 Subject: [PATCH] Add missing static keywords to dc(1) --- usr.bin/dc/dc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/dc/dc.c b/usr.bin/dc/dc.c index 47315cc8dbc..d5edadb7989 100644 --- a/usr.bin/dc/dc.c +++ b/usr.bin/dc/dc.c @@ -39,9 +39,9 @@ static void usage(void); extern char *__progname; -struct source src; +static struct source src; -struct option long_options[] = +static const struct option long_options[] = { {"expression", required_argument, NULL, 'e'}, {"file", required_argument, NULL, 'f'},