Rename error enumerator to prevent naming conflicts.

This commit is contained in:
2016-12-21 16:58:00 -08:00
parent 8ac71dc021
commit c74f05eaf5
4 changed files with 12 additions and 12 deletions

View File

@@ -3,7 +3,7 @@
#include <stdarg.h>
enum libds_result_e { SUCCESS, MALLOC };
enum libds_result_e { LIBDS_SUCCESS, LIBDS_MALLOC };
typedef enum libds_result_e libds_result;
typedef int (*compare_func)(void*, void*);