summaryrefslogtreecommitdiff
path: root/e2fsprogs/e2p
diff options
context:
space:
mode:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-10-10 11:35:17 +0000
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-10-10 11:35:17 +0000
commit083d3f49c2c0fec0bd8b5b0bec875d67748c612e (patch)
treebb326553f70f3bebe7ff3ed3cf1d57dcc8a5e8ab /e2fsprogs/e2p
parentff9f2f6fbae538d27197e7e357da187031ef33df (diff)
downloadbusybox-w32-083d3f49c2c0fec0bd8b5b0bec875d67748c612e.tar.gz
busybox-w32-083d3f49c2c0fec0bd8b5b0bec875d67748c612e.tar.bz2
busybox-w32-083d3f49c2c0fec0bd8b5b0bec875d67748c612e.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.
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