summaryrefslogtreecommitdiffstats
path: root/libsyscalls_strerror.c
diff options
context:
space:
mode:
Diffstat (limited to 'libsyscalls_strerror.c')
-rw-r--r--libsyscalls_strerror.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/libsyscalls_strerror.c b/libsyscalls_strerror.c
new file mode 100644
index 0000000..d54ed74
--- /dev/null
+++ b/libsyscalls_strerror.c
@@ -0,0 +1,18 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+
+
+const char *
+libsyscalls_strerror(enum libsyscalls_error error)
+{
+#define X(ENUM, STR)\
+ case ENUM: return STR
+
+ switch ((int)error) {
+ LIBSYSCALLS_LIST_ERRORS(X, ;);
+ default:
+ return "Unrecognised error";
+ }
+
+#undef X
+}