diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2021-01-27 07:18:42 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2021-01-27 07:18:42 +0000 |
commit | bd00694ccd621d3d0d10649f307cee96207f185e (patch) | |
tree | 63bbe03fc321fba5e84b3698220fa48215ccd13f /usr.bin/cvs/cvs.h | |
parent | 3ac9d61e16e1dbda330a58fff4221fbf4b1f96f1 (diff) |
fix -fno-common issues; ok mortimer
Diffstat (limited to 'usr.bin/cvs/cvs.h')
-rw-r--r-- | usr.bin/cvs/cvs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index 63e0f1e0c03..7793e177253 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.184 2017/06/01 08:08:24 joris Exp $ */ +/* $OpenBSD: cvs.h,v 1.185 2021/01/27 07:18:17 deraadt Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -189,7 +189,7 @@ struct cvs_var { TAILQ_ENTRY(cvs_var) cv_link; }; -TAILQ_HEAD(, cvs_var) cvs_variables; +extern TAILQ_HEAD(cvs_varhead, cvs_var) cvs_variables; #define CVS_ROOT_CONNECTED 0x01 |