diff libtomcrypt/src/misc/error_to_string.c @ 314:827f87dfbc22 ucc-axis-hack

*hack hack hack* get rid of a few more bits
author matt-ucc@ucc.asn.au
date Mon, 27 Mar 2006 08:36:44 +0000
parents 1b9e69c058d2
children
line wrap: on
line diff
--- a/libtomcrypt/src/misc/error_to_string.c	Sun Mar 26 13:18:30 2006 +0000
+++ b/libtomcrypt/src/misc/error_to_string.c	Mon Mar 27 08:36:44 2006 +0000
@@ -16,6 +16,7 @@
   Convert error codes to ASCII strings, Tom St Denis
 */
 
+#if 0
 static const char *err_2_str[] =
 {
    "CRYPT_OK",
@@ -67,6 +68,12 @@
       return err_2_str[err];
    }   
 }
+#endif
+const char *error_to_string(int err)
+{
+	static *ret = "";
+	return  ret;
+}
 
 
 /* $Source: /cvs/libtom/libtomcrypt/src/misc/error_to_string.c,v $ */