Browse Source

Move tree.h and queue.h into misc/ directory.

pull/11/head
ngkaho1234 9 years ago
parent
commit
8f8a935ae1
  1. 4
      lwext4/ext4_bcache.h
  2. 1
      lwext4/ext4_journal.c
  3. 2
      lwext4/ext4_types.h
  4. 0
      lwext4/misc/queue.h
  5. 0
      lwext4/misc/tree.h

4
lwext4/ext4_bcache.h

@ -45,8 +45,8 @@ extern "C" {
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
#include "tree.h" #include "misc/tree.h"
#include "queue.h" #include "misc/queue.h"
#define EXT4_BLOCK_ZERO() \ #define EXT4_BLOCK_ZERO() \
{.lb_id = 0, .data = 0} {.lb_id = 0, .data = 0}

1
lwext4/ext4_journal.c

@ -44,7 +44,6 @@
#include "ext4_blockdev.h" #include "ext4_blockdev.h"
#include "ext4_crc32c.h" #include "ext4_crc32c.h"
#include "ext4_debug.h" #include "ext4_debug.h"
#include "tree.h"
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>

2
lwext4/ext4_types.h

@ -48,7 +48,7 @@ extern "C" {
#include "ext4_config.h" #include "ext4_config.h"
#include "ext4_blockdev.h" #include "ext4_blockdev.h"
#include "tree.h" #include "misc/tree.h"
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>

0
lwext4/queue.h → lwext4/misc/queue.h

0
lwext4/tree.h → lwext4/misc/tree.h

Loading…
Cancel
Save