aboutsummaryrefslogtreecommitdiff
path: root/e2fsprogs/e2p
diff options
context:
space:
mode:
authorvodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-10 11:35:17 +0000
committervodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-10 11:35:17 +0000
commit0d5aa005853e46d0eea77a3e19f065f2b7963848 (patch)
treebb326553f70f3bebe7ff3ed3cf1d57dcc8a5e8ab /e2fsprogs/e2p
parent5b39eeee4603692fe8d007f562ef7f8c0a328a2d (diff)
downloadbusybox-w32-0d5aa005853e46d0eea77a3e19f065f2b7963848.tar.gz
busybox-w32-0d5aa005853e46d0eea77a3e19f065f2b7963848.tar.bz2
busybox-w32-0d5aa005853e46d0eea77a3e19f065f2b7963848.zip
bb_mkdep: Rewroted. removed problem "include name must uniq", speed up * 3.
e2fsprogs: remove confuse bb_mkdep. Use internal e2fsprogs includes only. other: remove confuse bb_mkdep. git-svn-id: svn://busybox.net/trunk/busybox@11822 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'e2fsprogs/e2p')
-rw-r--r--e2fsprogs/e2p/e2p.h6
-rw-r--r--e2fsprogs/e2p/uuid.c2
2 files changed, 5 insertions, 3 deletions
diff --git a/e2fsprogs/e2p/e2p.h b/e2fsprogs/e2p/e2p.h
index 57bcec31f..d4a8c0eda 100644
--- a/e2fsprogs/e2p/e2p.h
+++ b/e2fsprogs/e2p/e2p.h
@@ -3,12 +3,14 @@
3#include <stdio.h> 3#include <stdio.h>
4#include <dirent.h> 4#include <dirent.h>
5 5
6#include <ext2fs/ext2_fs.h> 6#include "../ext2fs/ext2_fs.h"
7 7
8#define E2P_FEATURE_COMPAT 0 8#define E2P_FEATURE_COMPAT 0
9#define E2P_FEATURE_INCOMPAT 1 9#define E2P_FEATURE_INCOMPAT 1
10#define E2P_FEATURE_RO_INCOMPAT 2 10#define E2P_FEATURE_RO_INCOMPAT 2
11 11#ifndef EXT3_FEATURE_INCOMPAT_EXTENTS
12#define EXT3_FEATURE_INCOMPAT_EXTENTS 0x0040
13#endif
12 14
13/* `options' for print_flags() */ 15/* `options' for print_flags() */
14 16
diff --git a/e2fsprogs/e2p/uuid.c b/e2fsprogs/e2p/uuid.c
index c16a76842..9feca4cfa 100644
--- a/e2fsprogs/e2p/uuid.c
+++ b/e2fsprogs/e2p/uuid.c
@@ -4,7 +4,7 @@
4 4
5#include <stdio.h> 5#include <stdio.h>
6#include <string.h> 6#include <string.h>
7#include <ext2fs/ext2_types.h> 7#include "../ext2fs/ext2_types.h"
8 8
9#include "e2p.h" 9#include "e2p.h"
10 10