- (stevesk) rijndael.c: cleanup missing declaration warnings.
diff --git a/rijndael.c b/rijndael.c
index fd1cc99..737007e 100644
--- a/rijndael.c
+++ b/rijndael.c
@@ -306,7 +306,7 @@
 	}
 
 	tab_gen = 1;
-};
+}
 
 #define star_x(x) (((x) & 0x7f7f7f7f) << 1) ^ ((((x) & 0x80808080) >> 7) * 0x1b)
 
@@ -399,7 +399,7 @@
 	}
 
 	return ctx;
-};
+}
 
 /* encrypt a block of text  */
 
@@ -444,7 +444,7 @@
 
 	out_blk[0] = b0[0]; out_blk[1] = b0[1];
 	out_blk[2] = b0[2]; out_blk[3] = b0[3];
-};
+}
 
 /* decrypt a block of text  */
 
@@ -490,4 +490,4 @@
 
 	out_blk[0] = b0[0]; out_blk[1] = b0[1];
 	out_blk[2] = b0[2]; out_blk[3] = b0[3];
-};
+}