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:
authorCampbell Barton <ideasman42@gmail.com>2013-04-01 15:27:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-01 15:27:47 +0400
commit5d234f0a0bafddb82d4904abb90fa069d71db2cd (patch)
tree7762286fcc09338851d8b856f20ca5832e5a0117 /source/blender/blenlib/intern/fileops.c
parent547342bf737c724641a75b86a16a97ddef2610da (diff)
code cleanup: includes
Diffstat (limited to 'source/blender/blenlib/intern/fileops.c')
-rw-r--r--source/blender/blenlib/intern/fileops.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/source/blender/blenlib/intern/fileops.c b/source/blender/blenlib/intern/fileops.c
index ad6a9ff2ac3..ae6404153c8 100644
--- a/source/blender/blenlib/intern/fileops.c
+++ b/source/blender/blenlib/intern/fileops.c
@@ -30,8 +30,8 @@
*/
+#include <stdlib.h> /* malloc */
#include <string.h>
-#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
@@ -42,9 +42,9 @@
#include "zlib.h"
#ifdef WIN32
-#ifdef __MINGW32__
-#include <ctype.h>
-#endif
+# ifdef __MINGW32__
+# include <ctype.h>
+# endif
# include <io.h>
# include "BLI_winstuff.h"
# include "BLI_callbacks.h"
@@ -60,8 +60,11 @@
#include "MEM_guardedalloc.h"
-#include "BLI_blenlib.h"
#include "BLI_utildefines.h"
+#include "BLI_listbase.h"
+#include "BLI_string.h"
+#include "BLI_path_util.h"
+#include "BLI_fileops.h"
#include "MEM_sys_types.h" // for intptr_t support