aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-05-18 01:16:16 +0000
committerRichard M. Stallman1994-05-18 01:16:16 +0000
commit9fab67cb3ee44e8384eb6d25bcca43cdb81ce7c5 (patch)
treeb2615ad6c2b8b2ae20dca75e7258afe172261c64 /lib-src
parentadf6b7f952928831a7597ff6ab64a9acc9e8f060 (diff)
downloademacs-9fab67cb3ee44e8384eb6d25bcca43cdb81ce7c5.tar.gz
emacs-9fab67cb3ee44e8384eb6d25bcca43cdb81ce7c5.zip
(etags_getcwd): Cast result of popen.
(popen): Declaration deleted.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/etags.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c
index 4374940c587..6c480f4b719 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -55,9 +55,6 @@ char pot_etags_version[] = "@(#) pot revision number is 10.32";
55#include "getopt.h" 55#include "getopt.h"
56 56
57extern char *getenv (); 57extern char *getenv ();
58#ifndef MSDOS
59extern FILE *popen ();
60#endif
61 58
62/* Define CTAGS to make the program "ctags" compatible with the usual one. 59/* Define CTAGS to make the program "ctags" compatible with the usual one.
63 Let it undefined to make the program "etags", which makes emacs-style 60 Let it undefined to make the program "etags", which makes emacs-style
@@ -3155,7 +3152,7 @@ etags_getcwd ()
3155 { 3152 {
3156 buf = xnew (bufsize, char); 3153 buf = xnew (bufsize, char);
3157 3154
3158 pipe = popen ("pwd 2>/dev/null", "r"); 3155 pipe = (FILE *) popen ("pwd 2>/dev/null", "r");
3159 if (pipe == NULL) 3156 if (pipe == NULL)
3160 { 3157 {
3161 perror ("pwd"); 3158 perror ("pwd");