diff --git a/base/sources/iron_system.c b/base/sources/iron_system.c index 42559fea..864ea117 100644 --- a/base/sources/iron_system.c +++ b/base/sources/iron_system.c @@ -14,11 +14,6 @@ #include #include -typedef enum { - IRON_LOG_LEVEL_INFO, - IRON_LOG_LEVEL_ERROR -} iron_log_level_t; - void iron_log_args(iron_log_level_t level, const char *format, va_list args) { #ifdef IRON_ANDROID va_list args_android_copy; diff --git a/base/sources/iron_system.h b/base/sources/iron_system.h index b5ff2f3d..761386f2 100644 --- a/base/sources/iron_system.h +++ b/base/sources/iron_system.h @@ -7,6 +7,12 @@ #include #include +typedef enum { + IRON_LOG_LEVEL_INFO, + IRON_LOG_LEVEL_ERROR +} iron_log_level_t; + +void iron_log_args(iron_log_level_t level, const char *format, va_list args); void iron_log(const char *format, ...); void iron_error(const char *format, ...);