diff --git a/demo/common/file_browser.c b/demo/common/file_browser.c index 3204629..74f11e9 100644 --- a/demo/common/file_browser.c +++ b/demo/common/file_browser.c @@ -1,3 +1,12 @@ +#ifdef __unix__ +#include +#include +#endif + +#ifndef _WIN32 +# include +#endif + struct icons { struct nk_image desktop; struct nk_image home; @@ -78,17 +87,6 @@ struct file_browser { struct media *media; }; -#ifdef __unix__ -#include -#include -#endif - -#ifndef _WIN32 -# include -#endif - -#include - static void die(const char *fmt, ...) {