MEMPACKET is typedef'd in ssltestlib.h, don't do so again in ssltestlib.c

Reviewed-by: Rich Salz <rsalz@openssl.org>
diff --git a/test/ssltestlib.c b/test/ssltestlib.c
index ff5cbed..8b30014 100644
--- a/test/ssltestlib.c
+++ b/test/ssltestlib.c
@@ -231,12 +231,12 @@
 }
 
 
-typedef struct mempacket_st {
+struct mempacket_st {
     unsigned char *data;
     int len;
     unsigned int num;
     unsigned int type;
-} MEMPACKET;
+};
 
 static void mempacket_free(MEMPACKET *pkt)
 {