Browse Source

Reorder includes to fix travis build

pull/11/head
gkostka 9 years ago
parent
commit
71bd7c174f
  1. 3
      lwext4/ext4.c
  2. 8
      lwext4/ext4.h

3
lwext4/ext4.c

@ -35,6 +35,7 @@
*/ */
#include "ext4_config.h" #include "ext4_config.h"
#include "ext4.h"
#include "ext4_blockdev.h" #include "ext4_blockdev.h"
#include "ext4_types.h" #include "ext4_types.h"
#include "ext4_debug.h" #include "ext4_debug.h"
@ -45,7 +46,7 @@
#include "ext4_super.h" #include "ext4_super.h"
#include "ext4_dir_idx.h" #include "ext4_dir_idx.h"
#include "ext4_xattr.h" #include "ext4_xattr.h"
#include "ext4.h"
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>

8
lwext4/ext4.h

@ -38,10 +38,6 @@
#ifndef EXT4_H_ #ifndef EXT4_H_
#define EXT4_H_ #define EXT4_H_
#include "ext4_config.h"
#include "ext4_types.h"
#include "ext4_blockdev.h"
#include <stdint.h> #include <stdint.h>
#include <stddef.h> #include <stddef.h>
@ -96,6 +92,10 @@
#include <fcntl.h> #include <fcntl.h>
#endif #endif
#include "ext4_config.h"
#include "ext4_types.h"
#include "ext4_blockdev.h"
/********************************OS LOCK INFERFACE***************************/ /********************************OS LOCK INFERFACE***************************/
/**@brief OS dependent lock interface.*/ /**@brief OS dependent lock interface.*/

Loading…
Cancel
Save