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/blenlib/intern/BLI_filelist.c')
-rw-r--r--source/blender/blenlib/intern/BLI_filelist.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/blenlib/intern/BLI_filelist.c b/source/blender/blenlib/intern/BLI_filelist.c
index a3b745fd63e..2e402f0c063 100644
--- a/source/blender/blenlib/intern/BLI_filelist.c
+++ b/source/blender/blenlib/intern/BLI_filelist.c
@@ -18,27 +18,27 @@
* \ingroup bli
*/
-#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
+#include <sys/types.h>
#ifndef WIN32
# include <dirent.h>
#endif
-#include <time.h>
-#include <sys/stat.h>
#include <string.h> /* strcpy etc.. */
+#include <sys/stat.h>
+#include <time.h>
#ifdef WIN32
-# include <io.h>
-# include <direct.h>
# include "BLI_winstuff.h"
# include "utfconv.h"
+# include <direct.h>
+# include <io.h>
#else
+# include <pwd.h>
# include <sys/ioctl.h>
# include <unistd.h>
-# include <pwd.h>
#endif
/* lib includes */
@@ -46,11 +46,11 @@
#include "DNA_listBase.h"
-#include "BLI_listbase.h"
-#include "BLI_string.h"
#include "BLI_fileops.h"
#include "BLI_fileops_types.h"
+#include "BLI_listbase.h"
#include "BLI_path_util.h"
+#include "BLI_string.h"
#include "../imbuf/IMB_imbuf.h"