Fix unused warnings.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.c-torture / compile / pr37955.c
blob1ac0246f5ab0c31785df81857b5fda006b79aceb
1 typedef struct
3 enum { NotConnected = 0 } conn_state;
4 unsigned int conn_hndl;
5 } AEP_CONNECTION_ENTRY;
7 static AEP_CONNECTION_ENTRY aep_app_conn_table[256];
9 void aep_mod_exp (void)
11 int count;
13 for (count = 0; count < 256; count++)
15 aep_app_conn_table[count].conn_state = NotConnected;
16 aep_app_conn_table[count].conn_hndl = 0;