]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - error.h
error.h: Remove is_errno().
[paraslash.git] / error.h
diff --git a/error.h b/error.h
index 3818b1106ced60356e065ac8669523d1afb2808d..27e9e264ba10206e9218ac25013f63f04bc821ec 100644 (file)
--- a/error.h
+++ b/error.h
@@ -578,20 +578,6 @@ extern const char **para_errlist[];
 /** Set the osl error bit for the given number. */
 #define OSL_ERRNO_TO_PARA_ERROR(num) ((num) | (1 << OSL_ERROR_BIT))
 
-/** Check whether a given number is a system error number.
- *
- * \param num The value to be checked.
- * \param _errno The system error number.
- *
- * \return True if \a num is paraslash's representation of the system
- * error identified by \a _errno.
- */
-_static_inline_ bool is_errno(int num, int _errno)
-{
-       assert(num > 0 && _errno > 0);
-       return ERRNO_TO_PARA_ERROR(_errno) == num;
-}
-
 /**
  * Paraslash's version of strerror(3).
  *