aboutsummaryrefslogtreecommitdiff
path: root/src/error.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/error.h')
-rw-r--r--src/error.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/error.h b/src/error.h
deleted file mode 100644
index 4a91962..0000000
--- a/src/error.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef MAGI_INCLUDED_ERROR
-#define MAGI_INCLUDED_ERROR
-
-
-typedef enum magi_error {
- magi_error_none = 0,
- magi_error_nobound,
- magi_error_unknown,
- magi_error_notype,
- magi_error_length,
- magi_error_memory,
- magi_error_cookies,
- magi_error_urlenc,
- magi_error_multipart,
- magi_error_limit
-} magi_error;
-
-const char *magi_error_message(magi_error error);
-
-
-#endif