summaryrefslogtreecommitdiff
path: root/lib-src/emacsclient.c
diff options
context:
space:
mode:
authorJan Djärv <jan.h.d@swipnet.se>2005-03-18 20:44:50 +0000
committerJan Djärv <jan.h.d@swipnet.se>2005-03-18 20:44:50 +0000
commit5b9562c3df6c19b5f698b2ee3dc678086e5dedee (patch)
tree3bedaba9b9e18f22f14be1551c0c136daf59c496 /lib-src/emacsclient.c
parentc7f6afd5989b696e8427f96f5fea27f621d16fb1 (diff)
* emacsclient.c: Avoid expansion of getcwd when defined as a macro.
Diffstat (limited to 'lib-src/emacsclient.c')
-rw-r--r--lib-src/emacsclient.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index 24dcdffff2..90c0228f72 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -42,7 +42,7 @@ Boston, MA 02111-1307, USA. */
#endif /* not VMS */
char *getenv (), *getwd ();
-char *getcwd ();
+char *(getcwd) ();
#ifndef VERSION
#define VERSION "unspecified"