summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2007-12-18 04:07:15 +0100
committerHans Ulrich Niedermann <hun@n-dimensional.de>2007-12-18 04:07:15 +0100
commit3158ef18a903ca4a98b8fa220c9fc5c133d8bdf6 (patch)
tree9a55151379924f5718d4663bfb811b17d3040f10
parent092c1b9e8f47d03736b41b51abef222d6d6467d8 (diff)
downloade2tools-master.tar.gz
e2tools-master.tar.xz
e2tools-master.zip
Remove redundant comment lineHEADmaster
-rw-r--r--copy.h1
-rw-r--r--ln.h1
-rw-r--r--ls.h1
-rw-r--r--mkdir.h1
-rw-r--r--mv.h1
-rw-r--r--read.h1
-rw-r--r--rm.h1
-rw-r--r--tail.h1
-rw-r--r--util.h1
-rw-r--r--write.h1
10 files changed, 0 insertions, 10 deletions
diff --git a/copy.h b/copy.h
index b4c3bda..0d9f5c9 100644
--- a/copy.h
+++ b/copy.h
@@ -1,7 +1,6 @@
#ifndef E2TOOLS_COPY_H
#define E2TOOLS_COPY_H
-/* from copy.c */
extern long copy(int argc, char *argv[]);
extern int my_strcmp(const void *n1, const void *n2);
diff --git a/ln.h b/ln.h
index 16f568c..c7a1fe6 100644
--- a/ln.h
+++ b/ln.h
@@ -1,7 +1,6 @@
#ifndef E2TOOLS_LN_H
#define E2TOOLS_LN_H
-/* from ln.c */
extern long do_ln(int argc, char *argv[]);
extern long create_hard_link(ext2_filsys fs, ext2_ino_t cwd, ext2_ino_t
diff --git a/ls.h b/ls.h
index 75963c9..d339d48 100644
--- a/ls.h
+++ b/ls.h
@@ -1,7 +1,6 @@
#ifndef E2TOOLS_LS_H
#define E2TOOLS_LS_H
-/* from ls.c */
extern long do_list_dir(int argc, char *argv[]);
#endif /* !E2TOOLS_LS_H */
diff --git a/mkdir.h b/mkdir.h
index 32a86f7..0842024 100644
--- a/mkdir.h
+++ b/mkdir.h
@@ -1,7 +1,6 @@
#ifndef E2TOOLS_MKDIR_H
#define E2TOOLS_MKDIR_H
-/* from mkdir.c */
extern long e2mkdir(int argc, char *argv[]);
extern long create_dir(ext2_filsys fs, ext2_ino_t root, ext2_ino_t *cwd,
char *dirname, struct stat *def_stat);
diff --git a/mv.h b/mv.h
index 4e09816..fd07845 100644
--- a/mv.h
+++ b/mv.h
@@ -1,7 +1,6 @@
#ifndef E2TOOLS_MV_H
#define E2TOOLS_MV_H
-/* from mv.c */
extern long do_mv(int argc, char *argv[]);
extern long get_file_parts(ext2_filsys fs, ext2_ino_t root, char *pathname,
ext2_ino_t *dir_ino, char **dir_name,
diff --git a/read.h b/read.h
index bd55113..8e61882 100644
--- a/read.h
+++ b/read.h
@@ -1,7 +1,6 @@
#ifndef E2TOOLS_READ_H
#define E2TOOLS_READ_H
-/* from read.c */
extern long get_file(ext2_filsys fs, ext2_ino_t root, ext2_ino_t cwd,
char *infile, char *outfile, int keep);
extern long retrieve_data(ext2_filsys fs, ext2_ino_t src, int dest_fd,
diff --git a/rm.h b/rm.h
index dd89821..0b6a14e 100644
--- a/rm.h
+++ b/rm.h
@@ -1,7 +1,6 @@
#ifndef E2TOOLS_RM_H
#define E2TOOLS_RM_H
-/* from rm.c */
extern long e2rm(int argc, char *argv[]);
#endif /* !E2TOOLS_RM_H */
diff --git a/tail.h b/tail.h
index 7b6eec3..de484b2 100644
--- a/tail.h
+++ b/tail.h
@@ -1,7 +1,6 @@
#ifndef E2TOOLS_TAIL_H
#define E2TOOLS_TAIL_H
-/* from tail.c */
extern long do_tail(int argc, char *argv[]);
#endif /* !E2TOOLS_TAIL_H */
diff --git a/util.h b/util.h
index 7987ecc..8d5d441 100644
--- a/util.h
+++ b/util.h
@@ -1,7 +1,6 @@
#ifndef E2TOOLS_UTIL_H
#define E2TOOLS_UTIL_H
-/* from util.c */
extern mode_t ext2_mode_xlate(__u16 lmode);
extern __u16 host_mode_xlate(mode_t hmode);
extern long open_filesystem(char *name, ext2_filsys *fs, ext2_ino_t *root, int
diff --git a/write.h b/write.h
index 3a0f08a..fb04733 100644
--- a/write.h
+++ b/write.h
@@ -1,7 +1,6 @@
#ifndef E2TOOLS_WRITE_H
#define E2TOOLS_WRITE_H
-/* from write.c */
extern long
put_file(ext2_filsys fs, ext2_ino_t cwd, char *infile, char *outfile,
ext2_ino_t *outfile_ino, int keep, struct stat *def_stat);