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
commit0677907d4a0f3fdd9d478e03946e7478e757a9a6 (patch)
tree49e5a90500c3802e32b71a2fc958dcd7def386e3 /pw/pw.h
parentebe374b99453f8ee98181d9eed5d1fc9299a2161 (diff)
downloadpw-darwin-0677907d4a0f3fdd9d478e03946e7478e757a9a6.tar.gz
pw-darwin-0677907d4a0f3fdd9d478e03946e7478e757a9a6.tar.zst
pw-darwin-0677907d4a0f3fdd9d478e03946e7478e757a9a6.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
{