aboutsummaryrefslogtreecommitdiff
path: root/texinfo/info
diff options
context:
space:
mode:
authorRichard Henderson <rth@cygnus.com>1997-10-15 15:49:40 +0000
committerJeffrey A Law <law@cygnus.com>1997-10-15 15:49:40 +0000
commit2d85e79caf356f720e1933cc1b4d23695118f311 (patch)
treeae02da8712049ca2630ee68f4600ceeb5e3ab819 /texinfo/info
parentc501f5d3b1a1900ea27ce7fbd5b095fd33a7a017 (diff)
* info/man.c (find_man_formatter): Don't cast getenv(), but provide
a minimal declaration at top level. * makeinfo/makeinfo.c: Don't redefine alloca if it is already defined. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@15910 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'texinfo/info')
-rw-r--r--texinfo/info/man.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/texinfo/info/man.c b/texinfo/info/man.c
index f278837e10a..603325886b4 100644
--- a/texinfo/info/man.c
+++ b/texinfo/info/man.c
@@ -51,6 +51,8 @@
# endif /* !hpux */
#endif /* FD_SET */
+extern char *getenv ();
+
static char *read_from_fd ();
static void clean_manpage ();
static NODE *manpage_node_of_file_buffer ();
@@ -180,7 +182,7 @@ executable_file_in_path (filename, path)
static char *
find_man_formatter ()
{
- return (executable_file_in_path ("man", (char *)getenv ("PATH")));
+ return (executable_file_in_path ("man", getenv ("PATH")));
}
static char *manpage_pagename = (char *)NULL;