summaryrefslogtreecommitdiffstats
path: root/pw/pw.h
diff options
context:
space:
mode:
authorStefan Farfeleder <stefanf@FreeBSD.org>2005-02-10 09:05:27 +0000
committerStefan Farfeleder <stefanf@FreeBSD.org>2005-02-10 09:05:27 +0000
commit6142d0366b66fcee0097e03dbefaf54bfb8f0daa (patch)
tree02d01fea71b7517a9210d653da9eaa1d61a2405c /pw/pw.h
parent0dc92c2de5173e7bcbfafa2fbbfa13226eabfe28 (diff)
downloadpw-darwin-6142d0366b66fcee0097e03dbefaf54bfb8f0daa.tar.gz
pw-darwin-6142d0366b66fcee0097e03dbefaf54bfb8f0daa.tar.zst
pw-darwin-6142d0366b66fcee0097e03dbefaf54bfb8f0daa.zip
The variable `arglist' has internal linkage in pw.c, don't declare it as extern
here.
Diffstat (limited to 'pw/pw.h')
-rw-r--r--pw/pw.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pw/pw.h b/pw/pw.h
index f541b26..a0f97e3 100644
--- a/pw/pw.h
+++ b/pw/pw.h
@@ -69,7 +69,7 @@ struct carg
LIST_ENTRY(carg) list;
};
-extern LIST_HEAD(cargs, carg) arglist;
+LIST_HEAD(cargs, carg);
struct userconf
{