changeset 19:16d552a1de9d

Do not use extern in declarations that do not need to be extern.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 24 Sep 2011 12:02:07 +0300
parents 729d4555e08c
children 07c68836db71
files configure
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Sat Sep 24 12:00:28 2011 +0300
+++ b/configure	Sat Sep 24 12:02:07 2011 +0300
@@ -71,13 +71,13 @@
     echo
     echo '#include "config.h"'
     echo
-    echo 'extern const char *yadex_etc_path[] ='
+    echo 'const char *yadex_etc_path[] ='
     echo '{'
     sed 's/\\/\\\\/g; s/"/\\"/g; s/^.*/  "&",/;' $BUILDDIR/config.etc
     echo '  0'
     echo '};'
     echo
-    echo 'extern const char *yadex_share_path[] ='
+    echo 'const char *yadex_share_path[] ='
     echo '{'
     sed 's/\\/\\\\/g; s/"/\\"/g; s/^.*/  "&",/;' $BUILDDIR/config.share
     echo '  0'