From 2de206d8f09c8b01d3721f860c28258838953a18 Mon Sep 17 00:00:00 2001 From: Jesper Juhl Date: Sat, 20 Oct 2007 02:44:34 +0200 Subject: [PATCH] Fix compiler warning in smount example program from sharedsubtree.txt If one compiles the example smount program, found in Documentation/sharedsubtree.txt, with -Wall then there's a small compiler warning rearing its ugly head : smount.c: In function 'main': smount.c:45: warning: implicit declaration of function 'strcmp' Easily fixed by just including string.h Signed-off-by: Jesper Juhl Signed-off-by: Adrian Bunk --- Documentation/sharedsubtree.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/sharedsubtree.txt b/Documentation/sharedsubtree.txt index ccf1cebe744..736540045dc 100644 --- a/Documentation/sharedsubtree.txt +++ b/Documentation/sharedsubtree.txt @@ -153,6 +153,7 @@ replicas continue to be exactly same. #include #include #include + #include #include #include -- 2.39.2