]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* tests/stresstest.at: Remove multiple variable definition.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Tue, 8 Mar 2005 13:44:32 +0000 (13:44 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Tue, 8 Mar 2005 13:44:32 +0000 (13:44 +0000)
ChangeLog
tests/stresstest.at

index 427eb305fcd7cfffe3c1af49a5d5fa31a1966739..aaf82d3809419656aedd70ea4bd716b95c6934f0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2005-03-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
+       * tests/stresstest.at: Remove multiple variable definition.
+
        * TODO: Update.
 
        * THANKS: Update.
index 341535e5e68a4345f8ece2a0642ec74be14bfc5e..330ee547ec444905aefc128f0b0e0f02870c4b19 100644 (file)
@@ -59,7 +59,7 @@ int ab = 1;
 ]])
 
 AT_DATA(main.c,
-[[int v1;
+[[extern int v1;
 extern int v3, v4;
 extern const int v5, v6;
 extern const char* v7;
@@ -82,7 +82,7 @@ int main(void)
 ]])
 
 AT_DATA(dlself.c,
-[[int v1;
+[[extern int v1;
 extern int v3, v4;
 extern const int v5, v6;
 extern const char* v7;
@@ -95,7 +95,7 @@ extern int (*const v12) (void);
 typedef struct { int arr[1000]; } large;
 extern large v13, v14, v15;
 
-int w1;
+extern int w1;
 extern int w3, w4;
 extern const int w5, w6;
 extern const char* w7;