diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-07-25 05:36:54 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-07-25 05:36:54 +0200 |
commit | 35a7804dae480ba540f77f4431d2327275357d0f (patch) | |
tree | 642ca885b49a7f2cbd7587fefade265c8e72b5d2 /lib-src/emacsclient.c | |
parent | 361358ea12271d5d747773a2d1ba743ee9516745 (diff) | |
download | emacs-35a7804dae480ba540f77f4431d2327275357d0f.tar.gz emacs-35a7804dae480ba540f77f4431d2327275357d0f.tar.bz2 emacs-35a7804dae480ba540f77f4431d2327275357d0f.zip |
* emacsclient.c (getcwd): Fix previous change.
Make getcwd conditional on HAVE_GETCWD and declare with the
correct POSIX profile (for some reason MinGW headers define
its 2nd arg as int, not size_t; but getcwd is not used on
Windows nonetheless).
Diffstat (limited to 'lib-src/emacsclient.c')
-rw-r--r-- | lib-src/emacsclient.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 39b5956741d..1ca9b793f3a 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -82,7 +82,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ char *getenv (const char *), *getwd (char *); -char *(getcwd) (char *, int); +#ifdef HAVE_GETCWD +char *(getcwd) (char *, size_t); +#endif #ifdef WINDOWSNT char *w32_getenv (char *); |