Add all platform_* prototypes to init.h and include it in linux.c to silence sparse warnings about static functions. Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxx> --- libfrog/linux.c | 1 + libxfs/init.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/libfrog/linux.c b/libfrog/linux.c index fc9f3ac..b6c2487 100644 --- a/libfrog/linux.c +++ b/libfrog/linux.c @@ -11,6 +11,7 @@ #include "libxfs_priv.h" #include "xfs_fs.h" +#include "init.h" extern char *progname; static int max_block_alignment; diff --git a/libxfs/init.h b/libxfs/init.h index e0b5091..2cda895 100644 --- a/libxfs/init.h +++ b/libxfs/init.h @@ -19,5 +19,7 @@ extern char *platform_findblockpath (char *path); extern int platform_direct_blockdev (void); extern int platform_align_blockdev (void); extern unsigned long platform_physmem(void); /* in kilobytes */ +extern void platform_findsizes(char *path, int fd, long long *sz, int *bsz); +extern int platform_nproc(void); #endif /* LIBXFS_INIT_H */ -- 1.8.3.1