diff mbox

[3/3] btrfs-progs: clean up commands.h

Message ID 1463634794-591-4-git-send-email-anand.jain@oracle.com (mailing list archive)
State Accepted
Headers show

Commit Message

Anand Jain May 19, 2016, 5:13 a.m. UTC
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>
---
 commands.h | 6 ------
 1 file changed, 6 deletions(-)
diff mbox

Patch

diff --git a/commands.h b/commands.h
index 2da093bf81a3..94229c112bc0 100644
--- a/commands.h
+++ b/commands.h
@@ -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