Tar inlining, #if 0 out unused function
diff --git a/archival/tar.c b/archival/tar.c
index 2aa5f07..b68882b 100644
--- a/archival/tar.c
+++ b/archival/tar.c
@@ -142,7 +142,7 @@
 typedef enum TarFileType TarFileType;
 
 /* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
-static void
+extern inline void
 addHardLinkInfo (HardLinkInfo **hlInfoHeadPtr, dev_t dev, ino_t ino,
 		short linkCount, const char *name)
 {
@@ -180,7 +180,7 @@
 }
 
 /* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
-static HardLinkInfo *
+extern inline HardLinkInfo *
 findHardLinkInfo (HardLinkInfo *hlInfo, dev_t dev, ino_t ino)
 {
 	while(hlInfo) {
@@ -226,7 +226,7 @@
 }
 
 /* Write out a tar header for the specified file/directory/whatever */
-static int
+extern inline int
 writeTarHeader(struct TarBallInfo *tbInfo, const char *header_name,
 		const char *real_name, struct stat *statbuf)
 {
@@ -320,7 +320,7 @@
 }
 
 # if defined CONFIG_FEATURE_TAR_EXCLUDE
-static int exclude_file(char **excluded_files, const char *file)
+extern inline int exclude_file(char **excluded_files, const char *file)
 {
 	int i;
 
@@ -448,7 +448,7 @@
 	return( TRUE);
 }
 
-static int writeTarFile(const char* tarName, int verboseFlag, char **argv,
+extern inline int writeTarFile(const char* tarName, int verboseFlag, char **argv,
 		char** excludeList, int gzip)
 {
 #ifdef CONFIG_FEATURE_TAR_GZIP
@@ -601,6 +601,7 @@
 /*
  * Create a list of names that are in the include list AND NOT in the exclude lists
  */
+#if 0 /* this is unused */
 char **list_and_not_list(char **include_list, char **exclude_list)
 {
 	char **new_include_list = NULL;
@@ -636,6 +637,7 @@
 	return(new_include_list);
 }
 #endif
+#endif
 
 int tar_main(int argc, char **argv)
 {