Skip to content

Commit 11a497f

Browse files
author
Michael Meskes
committed
More variables gcc moans about
1 parent 0754b39 commit 11a497f

27 files changed

+86
-88
lines changed

src/interfaces/ecpg/test/expected/preproc-array_of_struct.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ typedef struct ind {
5050
#line 21 "array_of_struct.pgc"
5151

5252

53-
int main( int argc, char * argv[] )
53+
int main()
5454
{
5555
/* exec sql begin declare section */
5656

src/interfaces/ecpg/test/expected/preproc-autoprep.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#line 6 "autoprep.pgc"
2424

2525

26-
int main(int argc, char* argv[]) {
26+
int main() {
2727
/* exec sql begin declare section */
2828

2929

src/interfaces/ecpg/test/expected/sql-dyntest.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ error (void)
151151
}
152152

153153
int
154-
main (int argc, char **argv)
154+
main ()
155155
{
156156
/* exec sql begin declare section */
157157

src/interfaces/ecpg/test/expected/sql-fetch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#line 5 "fetch.pgc"
2323

2424

25-
int main(int argc, char* argv[]) {
25+
int main() {
2626
/* exec sql begin declare section */
2727

2828

src/interfaces/ecpg/test/expected/sql-func.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#line 5 "func.pgc"
2323

2424

25-
int main(int argc, char* argv[]) {
25+
int main() {
2626

2727
#line 8 "func.pgc"
2828
char text [ 25 ] ;

src/interfaces/ecpg/test/expected/sql-indicators.c

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -91,74 +91,73 @@ struct sqlca_t *ECPGget_sqlca(void);
9191
#line 4 "indicators.pgc"
9292

9393

94-
95-
int main(int argc, char **argv)
94+
int main()
9695
{
9796
/* exec sql begin declare section */
9897

9998

10099

101-
#line 10 "indicators.pgc"
100+
#line 9 "indicators.pgc"
102101
int intvar = 5 ;
103102

104-
#line 11 "indicators.pgc"
103+
#line 10 "indicators.pgc"
105104
int nullind = - 1 ;
106105
/* exec sql end declare section */
107-
#line 12 "indicators.pgc"
106+
#line 11 "indicators.pgc"
108107

109108

110109
ECPGdebug(1,stderr);
111110

112111
{ ECPGconnect(__LINE__, 0, "regress1" , NULL, NULL , NULL, 0); }
113-
#line 16 "indicators.pgc"
112+
#line 15 "indicators.pgc"
114113

115114
{ ECPGsetcommit(__LINE__, "off", NULL);}
116-
#line 17 "indicators.pgc"
115+
#line 16 "indicators.pgc"
117116

118117

119118
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "create table indicator_test ( \"id\" int primary key , \"str\" text not null , val int null )", ECPGt_EOIT, ECPGt_EORT);}
120-
#line 22 "indicators.pgc"
119+
#line 21 "indicators.pgc"
121120

122121
{ ECPGtrans(__LINE__, NULL, "commit work");}
123-
#line 23 "indicators.pgc"
122+
#line 22 "indicators.pgc"
124123

125124

126125
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "insert into indicator_test ( id , str , val ) values ( 1 , 'Hello' , 0 )", ECPGt_EOIT, ECPGt_EORT);}
127-
#line 25 "indicators.pgc"
126+
#line 24 "indicators.pgc"
128127

129128

130129
/* use indicator in insert */
131130
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "insert into indicator_test ( id , str , val ) values ( 2 , 'Hi there' , $1 )",
132131
ECPGt_int,&(intvar),(long)1,(long)1,sizeof(int),
133132
ECPGt_int,&(nullind),(long)1,(long)1,sizeof(int), ECPGt_EOIT, ECPGt_EORT);}
134-
#line 28 "indicators.pgc"
133+
#line 27 "indicators.pgc"
135134

136135
nullind = 0;
137136
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "insert into indicator_test ( id , str , val ) values ( 3 , 'Good evening' , $1 )",
138137
ECPGt_int,&(intvar),(long)1,(long)1,sizeof(int),
139138
ECPGt_int,&(nullind),(long)1,(long)1,sizeof(int), ECPGt_EOIT, ECPGt_EORT);}
140-
#line 30 "indicators.pgc"
139+
#line 29 "indicators.pgc"
141140

142141
{ ECPGtrans(__LINE__, NULL, "commit work");}
143-
#line 31 "indicators.pgc"
142+
#line 30 "indicators.pgc"
144143

145144

146145
/* use indicators to get information about selects */
147146
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "select val from indicator_test where id = 1", ECPGt_EOIT,
148147
ECPGt_int,&(intvar),(long)1,(long)1,sizeof(int),
149148
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);}
150-
#line 34 "indicators.pgc"
149+
#line 33 "indicators.pgc"
151150

152151
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "select val from indicator_test where id = 2", ECPGt_EOIT,
153152
ECPGt_int,&(intvar),(long)1,(long)1,sizeof(int),
154153
ECPGt_int,&(nullind),(long)1,(long)1,sizeof(int), ECPGt_EORT);}
155-
#line 35 "indicators.pgc"
154+
#line 34 "indicators.pgc"
156155

157156
printf("intvar: %d, nullind: %d\n", intvar, nullind);
158157
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "select val from indicator_test where id = 3", ECPGt_EOIT,
159158
ECPGt_int,&(intvar),(long)1,(long)1,sizeof(int),
160159
ECPGt_int,&(nullind),(long)1,(long)1,sizeof(int), ECPGt_EORT);}
161-
#line 37 "indicators.pgc"
160+
#line 36 "indicators.pgc"
162161

163162
printf("intvar: %d, nullind: %d\n", intvar, nullind);
164163

@@ -167,24 +166,24 @@ int main(int argc, char **argv)
167166
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "update indicator_test set val = $1 where id = 1",
168167
ECPGt_int,&(intvar),(long)1,(long)1,sizeof(int),
169168
ECPGt_int,&(nullind),(long)1,(long)1,sizeof(int), ECPGt_EOIT, ECPGt_EORT);}
170-
#line 42 "indicators.pgc"
169+
#line 41 "indicators.pgc"
171170

172171
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "select val from indicator_test where id = 1", ECPGt_EOIT,
173172
ECPGt_int,&(intvar),(long)1,(long)1,sizeof(int),
174173
ECPGt_int,&(nullind),(long)1,(long)1,sizeof(int), ECPGt_EORT);}
175-
#line 43 "indicators.pgc"
174+
#line 42 "indicators.pgc"
176175

177176
printf("intvar: %d, nullind: %d\n", intvar, nullind);
178177

179178
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "drop table indicator_test", ECPGt_EOIT, ECPGt_EORT);}
180-
#line 46 "indicators.pgc"
179+
#line 45 "indicators.pgc"
181180

182181
{ ECPGtrans(__LINE__, NULL, "commit work");}
183-
#line 47 "indicators.pgc"
182+
#line 46 "indicators.pgc"
184183

185184

186185
{ ECPGdisconnect(__LINE__, "CURRENT");}
187-
#line 49 "indicators.pgc"
186+
#line 48 "indicators.pgc"
188187

189188
return 0;
190189
}

src/interfaces/ecpg/test/expected/sql-indicators.stderr

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -2,87 +2,87 @@
22
[NO_PID]: sqlca: code: 0, state: 00000
33
[NO_PID]: ECPGconnect: opening database regress1 on <DEFAULT> port <DEFAULT>
44
[NO_PID]: sqlca: code: 0, state: 00000
5-
[NO_PID]: ECPGsetcommit on line 17: action "off"; connection "regress1"
5+
[NO_PID]: ECPGsetcommit on line 16: action "off"; connection "regress1"
66
[NO_PID]: sqlca: code: 0, state: 00000
7-
[NO_PID]: ecpg_execute on line 19: query: create table indicator_test ( "id" int primary key , "str" text not null , val int null ); with 0 parameter(s) on connection regress1
7+
[NO_PID]: ecpg_execute on line 18: query: create table indicator_test ( "id" int primary key , "str" text not null , val int null ); with 0 parameter(s) on connection regress1
88
[NO_PID]: sqlca: code: 0, state: 00000
9-
[NO_PID]: ecpg_execute on line 19: using PQexec
9+
[NO_PID]: ecpg_execute on line 18: using PQexec
1010
[NO_PID]: sqlca: code: 0, state: 00000
11-
[NO_PID]: ecpg_execute on line 19: OK: CREATE TABLE
11+
[NO_PID]: ecpg_execute on line 18: OK: CREATE TABLE
1212
[NO_PID]: sqlca: code: 0, state: 00000
13-
[NO_PID]: ECPGtrans on line 23: action "commit work"; connection "regress1"
13+
[NO_PID]: ECPGtrans on line 22: action "commit work"; connection "regress1"
1414
[NO_PID]: sqlca: code: 0, state: 00000
15-
[NO_PID]: ecpg_execute on line 25: query: insert into indicator_test ( id , str , val ) values ( 1 , 'Hello' , 0 ); with 0 parameter(s) on connection regress1
15+
[NO_PID]: ecpg_execute on line 24: query: insert into indicator_test ( id , str , val ) values ( 1 , 'Hello' , 0 ); with 0 parameter(s) on connection regress1
1616
[NO_PID]: sqlca: code: 0, state: 00000
17-
[NO_PID]: ecpg_execute on line 25: using PQexec
17+
[NO_PID]: ecpg_execute on line 24: using PQexec
1818
[NO_PID]: sqlca: code: 0, state: 00000
19-
[NO_PID]: ecpg_execute on line 25: OK: INSERT 0 1
19+
[NO_PID]: ecpg_execute on line 24: OK: INSERT 0 1
2020
[NO_PID]: sqlca: code: 0, state: 00000
21-
[NO_PID]: ecpg_execute on line 28: query: insert into indicator_test ( id , str , val ) values ( 2 , 'Hi there' , $1 ); with 1 parameter(s) on connection regress1
21+
[NO_PID]: ecpg_execute on line 27: query: insert into indicator_test ( id , str , val ) values ( 2 , 'Hi there' , $1 ); with 1 parameter(s) on connection regress1
2222
[NO_PID]: sqlca: code: 0, state: 00000
23-
[NO_PID]: ecpg_execute on line 28: using PQexecParams
23+
[NO_PID]: ecpg_execute on line 27: using PQexecParams
2424
[NO_PID]: sqlca: code: 0, state: 00000
25-
[NO_PID]: free_params on line 28: parameter 1 = null
25+
[NO_PID]: free_params on line 27: parameter 1 = null
2626
[NO_PID]: sqlca: code: 0, state: 00000
27-
[NO_PID]: ecpg_execute on line 28: OK: INSERT 0 1
27+
[NO_PID]: ecpg_execute on line 27: OK: INSERT 0 1
2828
[NO_PID]: sqlca: code: 0, state: 00000
29-
[NO_PID]: ecpg_execute on line 30: query: insert into indicator_test ( id , str , val ) values ( 3 , 'Good evening' , $1 ); with 1 parameter(s) on connection regress1
29+
[NO_PID]: ecpg_execute on line 29: query: insert into indicator_test ( id , str , val ) values ( 3 , 'Good evening' , $1 ); with 1 parameter(s) on connection regress1
3030
[NO_PID]: sqlca: code: 0, state: 00000
31-
[NO_PID]: ecpg_execute on line 30: using PQexecParams
31+
[NO_PID]: ecpg_execute on line 29: using PQexecParams
3232
[NO_PID]: sqlca: code: 0, state: 00000
33-
[NO_PID]: free_params on line 30: parameter 1 = 5
33+
[NO_PID]: free_params on line 29: parameter 1 = 5
3434
[NO_PID]: sqlca: code: 0, state: 00000
35-
[NO_PID]: ecpg_execute on line 30: OK: INSERT 0 1
35+
[NO_PID]: ecpg_execute on line 29: OK: INSERT 0 1
3636
[NO_PID]: sqlca: code: 0, state: 00000
37-
[NO_PID]: ECPGtrans on line 31: action "commit work"; connection "regress1"
37+
[NO_PID]: ECPGtrans on line 30: action "commit work"; connection "regress1"
3838
[NO_PID]: sqlca: code: 0, state: 00000
39-
[NO_PID]: ecpg_execute on line 34: query: select val from indicator_test where id = 1; with 0 parameter(s) on connection regress1
39+
[NO_PID]: ecpg_execute on line 33: query: select val from indicator_test where id = 1; with 0 parameter(s) on connection regress1
4040
[NO_PID]: sqlca: code: 0, state: 00000
41-
[NO_PID]: ecpg_execute on line 34: using PQexec
41+
[NO_PID]: ecpg_execute on line 33: using PQexec
4242
[NO_PID]: sqlca: code: 0, state: 00000
43-
[NO_PID]: ecpg_execute on line 34: correctly got 1 tuples with 1 fields
43+
[NO_PID]: ecpg_execute on line 33: correctly got 1 tuples with 1 fields
4444
[NO_PID]: sqlca: code: 0, state: 00000
45-
[NO_PID]: ecpg_get_data on line 34: RESULT: 0 offset: -1; array: yes
45+
[NO_PID]: ecpg_get_data on line 33: RESULT: 0 offset: -1; array: yes
4646
[NO_PID]: sqlca: code: 0, state: 00000
47-
[NO_PID]: ecpg_execute on line 35: query: select val from indicator_test where id = 2; with 0 parameter(s) on connection regress1
47+
[NO_PID]: ecpg_execute on line 34: query: select val from indicator_test where id = 2; with 0 parameter(s) on connection regress1
4848
[NO_PID]: sqlca: code: 0, state: 00000
49-
[NO_PID]: ecpg_execute on line 35: using PQexec
49+
[NO_PID]: ecpg_execute on line 34: using PQexec
5050
[NO_PID]: sqlca: code: 0, state: 00000
51-
[NO_PID]: ecpg_execute on line 35: correctly got 1 tuples with 1 fields
51+
[NO_PID]: ecpg_execute on line 34: correctly got 1 tuples with 1 fields
5252
[NO_PID]: sqlca: code: 0, state: 00000
53-
[NO_PID]: ecpg_get_data on line 35: RESULT: offset: -1; array: yes
53+
[NO_PID]: ecpg_get_data on line 34: RESULT: offset: -1; array: yes
5454
[NO_PID]: sqlca: code: 0, state: 00000
55-
[NO_PID]: ecpg_execute on line 37: query: select val from indicator_test where id = 3; with 0 parameter(s) on connection regress1
55+
[NO_PID]: ecpg_execute on line 36: query: select val from indicator_test where id = 3; with 0 parameter(s) on connection regress1
5656
[NO_PID]: sqlca: code: 0, state: 00000
57-
[NO_PID]: ecpg_execute on line 37: using PQexec
57+
[NO_PID]: ecpg_execute on line 36: using PQexec
5858
[NO_PID]: sqlca: code: 0, state: 00000
59-
[NO_PID]: ecpg_execute on line 37: correctly got 1 tuples with 1 fields
59+
[NO_PID]: ecpg_execute on line 36: correctly got 1 tuples with 1 fields
6060
[NO_PID]: sqlca: code: 0, state: 00000
61-
[NO_PID]: ecpg_get_data on line 37: RESULT: 5 offset: -1; array: yes
61+
[NO_PID]: ecpg_get_data on line 36: RESULT: 5 offset: -1; array: yes
6262
[NO_PID]: sqlca: code: 0, state: 00000
63-
[NO_PID]: ecpg_execute on line 42: query: update indicator_test set val = $1 where id = 1; with 1 parameter(s) on connection regress1
63+
[NO_PID]: ecpg_execute on line 41: query: update indicator_test set val = $1 where id = 1; with 1 parameter(s) on connection regress1
6464
[NO_PID]: sqlca: code: 0, state: 00000
65-
[NO_PID]: ecpg_execute on line 42: using PQexecParams
65+
[NO_PID]: ecpg_execute on line 41: using PQexecParams
6666
[NO_PID]: sqlca: code: 0, state: 00000
67-
[NO_PID]: free_params on line 42: parameter 1 = null
67+
[NO_PID]: free_params on line 41: parameter 1 = null
6868
[NO_PID]: sqlca: code: 0, state: 00000
69-
[NO_PID]: ecpg_execute on line 42: OK: UPDATE 1
69+
[NO_PID]: ecpg_execute on line 41: OK: UPDATE 1
7070
[NO_PID]: sqlca: code: 0, state: 00000
71-
[NO_PID]: ecpg_execute on line 43: query: select val from indicator_test where id = 1; with 0 parameter(s) on connection regress1
71+
[NO_PID]: ecpg_execute on line 42: query: select val from indicator_test where id = 1; with 0 parameter(s) on connection regress1
7272
[NO_PID]: sqlca: code: 0, state: 00000
73-
[NO_PID]: ecpg_execute on line 43: using PQexec
73+
[NO_PID]: ecpg_execute on line 42: using PQexec
7474
[NO_PID]: sqlca: code: 0, state: 00000
75-
[NO_PID]: ecpg_execute on line 43: correctly got 1 tuples with 1 fields
75+
[NO_PID]: ecpg_execute on line 42: correctly got 1 tuples with 1 fields
7676
[NO_PID]: sqlca: code: 0, state: 00000
77-
[NO_PID]: ecpg_get_data on line 43: RESULT: offset: -1; array: yes
77+
[NO_PID]: ecpg_get_data on line 42: RESULT: offset: -1; array: yes
7878
[NO_PID]: sqlca: code: 0, state: 00000
79-
[NO_PID]: ecpg_execute on line 46: query: drop table indicator_test; with 0 parameter(s) on connection regress1
79+
[NO_PID]: ecpg_execute on line 45: query: drop table indicator_test; with 0 parameter(s) on connection regress1
8080
[NO_PID]: sqlca: code: 0, state: 00000
81-
[NO_PID]: ecpg_execute on line 46: using PQexec
81+
[NO_PID]: ecpg_execute on line 45: using PQexec
8282
[NO_PID]: sqlca: code: 0, state: 00000
83-
[NO_PID]: ecpg_execute on line 46: OK: DROP TABLE
83+
[NO_PID]: ecpg_execute on line 45: OK: DROP TABLE
8484
[NO_PID]: sqlca: code: 0, state: 00000
85-
[NO_PID]: ECPGtrans on line 47: action "commit work"; connection "regress1"
85+
[NO_PID]: ECPGtrans on line 46: action "commit work"; connection "regress1"
8686
[NO_PID]: sqlca: code: 0, state: 00000
8787
[NO_PID]: ecpg_finish: connection regress1 closed
8888
[NO_PID]: sqlca: code: 0, state: 00000

src/interfaces/ecpg/test/expected/sql-insupd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#line 5 "insupd.pgc"
2323

2424

25-
int main(int argc, char* argv[]) {
25+
int main() {
2626
/* exec sql begin declare section */
2727

2828

src/interfaces/ecpg/test/expected/sql-parser.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#line 6 "parser.pgc"
2424

2525

26-
int main(int argc, char* argv[]) {
26+
int main() {
2727
/* exec sql begin declare section */
2828

2929

src/interfaces/ecpg/test/expected/sql-quote.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#line 5 "quote.pgc"
2323

2424

25-
int main(int argc, char* argv[]) {
25+
int main() {
2626
/* exec sql begin declare section */
2727

2828

src/interfaces/ecpg/test/expected/sql-show.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#line 5 "show.pgc"
2323

2424

25-
int main(int argc, char* argv[]) {
25+
int main() {
2626
/* exec sql begin declare section */
2727

2828

src/interfaces/ecpg/test/expected/thread-prep.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ if (sqlca.sqlcode < 0) sqlprint();}
195195
return 0;
196196
}
197197

198-
int main (int argc, char** argv)
198+
int main ()
199199
{
200200
int i;
201201
#ifdef WIN32

src/interfaces/ecpg/test/expected/thread-thread.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ void *test_thread(void *arg);
4444
int nthreads = 10;
4545
int iterations = 20;
4646

47-
int main(int argc, char *argv[])
47+
int main()
4848
{
4949
#ifndef WIN32
5050
pthread_t *threads;

src/interfaces/ecpg/test/expected/thread-thread_implicit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ void *test_thread(void *arg);
4545
int nthreads = 10;
4646
int iterations = 20;
4747

48-
int main(int argc, char *argv[])
48+
int main()
4949
{
5050
#ifndef WIN32
5151
pthread_t *threads;

src/interfaces/ecpg/test/preproc/array_of_struct.pgc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ EXEC SQL TYPE cust_ind IS
2020
short phone_ind;
2121
};
2222

23-
int main( int argc, char * argv[] )
23+
int main()
2424
{
2525
EXEC SQL begin declare section;
2626
customer custs1[10];

src/interfaces/ecpg/test/preproc/autoprep.pgc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/* test automatic prepare for all statements */
66
EXEC SQL INCLUDE ../regression;
77

8-
int main(int argc, char* argv[]) {
8+
int main() {
99
EXEC SQL BEGIN DECLARE SECTION;
1010
int item[4], ind[4], i = 1;
1111
EXEC SQL END DECLARE SECTION;

src/interfaces/ecpg/test/sql/dyntest.pgc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ error (void)
1616
}
1717

1818
int
19-
main (int argc, char **argv)
19+
main ()
2020
{
2121
exec sql begin declare section;
2222
int COUNT;

src/interfaces/ecpg/test/sql/fetch.pgc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
EXEC SQL INCLUDE ../regression;
66

7-
int main(int argc, char* argv[]) {
7+
int main() {
88
EXEC SQL BEGIN DECLARE SECTION;
99
char str[25];
1010
int i, count=1;

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy