diff options
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h index 96c8e42995b..581835dd32b 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3317,8 +3317,8 @@ extern long get_random (void); | |||
| 3317 | extern void seed_random (long); | 3317 | extern void seed_random (long); |
| 3318 | extern int emacs_open (const char *, int, int); | 3318 | extern int emacs_open (const char *, int, int); |
| 3319 | extern int emacs_close (int); | 3319 | extern int emacs_close (int); |
| 3320 | extern ssize_t emacs_read (int, char *, size_t); | 3320 | extern EMACS_INT emacs_read (int, char *, EMACS_INT); |
| 3321 | extern ssize_t emacs_write (int, const char *, size_t); | 3321 | extern EMACS_INT emacs_write (int, const char *, EMACS_INT); |
| 3322 | enum { READLINK_BUFSIZE = 1024 }; | 3322 | enum { READLINK_BUFSIZE = 1024 }; |
| 3323 | extern char *emacs_readlink (const char *, char [READLINK_BUFSIZE]); | 3323 | extern char *emacs_readlink (const char *, char [READLINK_BUFSIZE]); |
| 3324 | #ifndef HAVE_MEMSET | 3324 | #ifndef HAVE_MEMSET |