btrfs-progs: clean up commands.h

This function is declared in utils.h so remove it from commands.h int
test_issubvolume(const char *path);

This function does not exists delete the declaration
get_subvol_name(char *mnt, char *full_path);

Signed-off-by: Anand Jain <anand.jain@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
Anand Jain 2016-05-19 13:13:14 +08:00 committed by David Sterba
parent b5ae826637
commit 98410fce1d
1 changed files with 0 additions and 6 deletions

View File

@ -125,10 +125,4 @@ int cmd_dump_super(int argc, char **argv);
int cmd_debug_tree(int argc, char **argv);
int cmd_rescue(int argc, char **argv);
/* subvolume exported functions */
int test_issubvolume(const char *path);
/* send.c */
char *get_subvol_name(char *mnt, char *full_path);
#endif