Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/imbuf/intern/util.c')
-rw-r--r--source/blender/imbuf/intern/util.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/source/blender/imbuf/intern/util.c b/source/blender/imbuf/intern/util.c
index 92c10a094d3..2b0597d64a5 100644
--- a/source/blender/imbuf/intern/util.c
+++ b/source/blender/imbuf/intern/util.c
@@ -33,13 +33,15 @@
#ifdef _WIN32
-#include <io.h>
-#define open _open
-#define read _read
-#define close _close
+# include <io.h>
+# define open _open
+# define read _read
+# define close _close
#endif
-#include "BLI_blenlib.h"
+#include <stdlib.h>
+
+#include "BLI_path_util.h"
#include "BLI_fileops.h"
#include "DNA_userdef_types.h"