diff options
Diffstat (limited to 'hicn-light/src/socket/error.c')
-rwxr-xr-x | hicn-light/src/socket/error.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hicn-light/src/socket/error.c b/hicn-light/src/socket/error.c new file mode 100755 index 000000000..3dafec8cf --- /dev/null +++ b/hicn-light/src/socket/error.c @@ -0,0 +1,7 @@ +#include "error.h" + +const char* HICN_SOCKET_ERROR_STRING[] = { +#define _(a, b, c) [b] = c, + foreach_hicn_socket_error +#undef _ +}; |