diff options
author | Kenichi Handa <handa@m17n.org> | 1998-11-04 10:53:14 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1998-11-04 10:53:14 +0000 |
commit | aeda1b4bb699f1aa50452cd5d2eb58e9ab6e04c9 (patch) | |
tree | 9ba3a99a2c3fd3a2ade4cadcc43ed7d40b8d43dd /src/sysdep.c | |
parent | 8a865238c8dadcecf887f68019492f0f71d719eb (diff) | |
download | emacs-aeda1b4bb699f1aa50452cd5d2eb58e9ab6e04c9.tar.gz |
[nec_ews_svr4]: Extern *_sobuf.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r-- | src/sysdep.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index 99119b925e1..778fa6f32e6 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -1237,11 +1237,15 @@ int old_fcntl_owner; but if so, this does no harm, and using the same name avoids wasting the other one's space. */ +#ifdef nec_ews_svr4 +extern char *_sobuf ; +#else #if defined (USG) || defined (DGUX) unsigned char _sobuf[BUFSIZ+8]; #else char _sobuf[BUFSIZ]; #endif +#endif #ifdef HAVE_LTCHARS static struct ltchars new_ltchars = {-1,-1,-1,-1,-1,-1}; |