Move adu_strerror() to adu.c.
[adu.git] / error.h
diff --git a/error.h b/error.h
index 9849916c13446fb05da69f6c7b7ddada2fe0dae3..b37ba781936a5bb7fadc9be7c6e022bb21ae77ad 100644 (file)
--- a/error.h
+++ b/error.h
@@ -75,25 +75,7 @@ extern int osl_errno;
 /** Contains the description of all adu error codes. */
 extern char *adu_errlist[];
 
-
-/**
- * adu's version of strerror(3).
- *
- * \param num The error number.
- *
- * \return The error text of \a num.
- */
-_static_inline_ const char *adu_strerror(int num)
-{
-       assert(num > 0);
-       if (num == E_OSL) {
-               assert(osl_errno > 0);
-               return osl_strerror((osl_errno));
-       }
-       if (IS_SYSTEM_ERROR(num))
-               return strerror((num) & ((1 << SYSTEM_ERROR_BIT) - 1));
-       return adu_errlist[num];
-}
+extern const char *adu_strerror(int num);
 
 /**
  * Wrapper for osl library calls.