]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* sunrpc/rpc_main.c (s_output): Generate #include <rpc/pmap_clnt.h>
authorRoland McGrath <roland@gnu.org>
Wed, 26 Jan 2005 02:40:14 +0000 (02:40 +0000)
committerRoland McGrath <roland@gnu.org>
Wed, 26 Jan 2005 02:40:14 +0000 (02:40 +0000)
irrespective of Cflag.

ChangeLog
sunrpc/rpc_main.c

index 1b12bf5c9ff04cdef09e1c01fb2ff31dae258639..19f0504974b84252486de6d4e11b559d7ab2f3d5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-01-14  GOTO Masanori  <gotom@debian.or.jp>
 
+       * sunrpc/rpc_main.c (s_output): Generate #include <rpc/pmap_clnt.h>
+       irrespective of Cflag.
+
        * manual/memory.texi (sbrk): Fix definition.
        * manual/string.texi (strcasestr): Fix example typo.
 
index fee83514d1a7d394b325c44879c782913b2f577d..acc0132603a8b809192440f785f65f44d9443320 100644 (file)
@@ -695,11 +695,9 @@ s_output (int argc, const char *argv[], const char *infile, const char *define,
 
   fprintf (fout, "#include <stdio.h>\n");
   fprintf (fout, "#include <stdlib.h>\n");
+  fprintf (fout, "#include <rpc/pmap_clnt.h>\n");
   if (Cflag)
-    {
-      fprintf (fout, "#include <rpc/pmap_clnt.h>\n");
-      fprintf (fout, "#include <string.h>\n");
-    }
+    fprintf (fout, "#include <string.h>\n");
   if (strcmp (svcclosetime, "-1") == 0)
     indefinitewait = 1;
   else if (strcmp (svcclosetime, "0") == 0)