From 3e700f4b208d29b4412253a4f3705fe198d3dbe8 Mon Sep 17 00:00:00 2001 From: Emanuele Giaquinta Date: Fri, 25 Jan 2008 12:43:16 +0000 Subject: [PATCH] Do not export iopt_tables pointer. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4690 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/core/args.c | 2 +- src/core/args.h | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/core/args.c b/src/core/args.c index f7410911..99505875 100644 --- a/src/core/args.c +++ b/src/core/args.c @@ -21,7 +21,7 @@ #include "module.h" #include "args.h" -GArray *iopt_tables = NULL; +static GArray *iopt_tables = NULL; void args_register(struct poptOption *options) { diff --git a/src/core/args.h b/src/core/args.h index 4d1b82fb..90b2d547 100644 --- a/src/core/args.h +++ b/src/core/args.h @@ -7,8 +7,6 @@ # include "lib-popt/popt.h" #endif -extern GArray *iopt_tables; - void args_register(struct poptOption *options); void args_execute(int argc, char *argv[]);