From 3a4b82d27a9cde7f2cad8b4bb46e1b3456f2b862 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 6 Dec 2010 21:50:24 +0000 Subject: [PATCH] PatchSet 783 Date: 2010/11/11 20:51:30 Author: nicm Branch: HEAD Tag: (none) Log: Declaration in header should be extern. Members: tmux.h:1.245->1.246 --- tmux.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tmux.h b/tmux.h index 9b851166..1c6bdccb 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.582 2010-12-06 21:48:56 nicm Exp $ */ +/* $Id: tmux.h,v 1.583 2010-12-06 21:50:24 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1306,7 +1306,7 @@ __dead void shell_exec(const char *, const char *); /* cfg.c */ extern int cfg_finished; -struct causelist cfg_causes; +extern struct causelist cfg_causes; void printflike2 cfg_add_cause(struct causelist *, const char *, ...); int load_cfg(const char *, struct cmd_ctx *, struct causelist *);