]> git.cameronkatri.com Git - pw-darwin.git/commitdiff
The variable `arglist' has internal linkage in pw.c, don't declare it as extern
authorStefan Farfeleder <stefanf@FreeBSD.org>
Thu, 10 Feb 2005 09:05:27 +0000 (09:05 +0000)
committerStefan Farfeleder <stefanf@FreeBSD.org>
Thu, 10 Feb 2005 09:05:27 +0000 (09:05 +0000)
here.

pw/pw.h

diff --git a/pw/pw.h b/pw/pw.h
index f541b26e1743c56719e79f31e5f5d5e348bb924f..a0f97e31a0c0fd55f93c19aa46145471a31bae85 100644 (file)
--- a/pw/pw.h
+++ b/pw/pw.h
@@ -69,7 +69,7 @@ struct carg
        LIST_ENTRY(carg)  list;
 };
 
        LIST_ENTRY(carg)  list;
 };
 
-extern LIST_HEAD(cargs, carg) arglist;
+LIST_HEAD(cargs, carg);
 
 struct userconf
 {
 
 struct userconf
 {