diff options
| author | Richard M. Stallman | 1994-05-19 16:34:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-19 16:34:27 +0000 |
| commit | c2c3f859e27583cf80d7070d1b86e9ac89528a2a (patch) | |
| tree | 1148a5e8e8d82092d96253920412903949476b98 /src/s/gnu-linux.h | |
| parent | 948c852a5fd6610555e3fa96d047803529c39880 (diff) | |
| download | emacs-c2c3f859e27583cf80d7070d1b86e9ac89528a2a.tar.gz emacs-c2c3f859e27583cf80d7070d1b86e9ac89528a2a.zip | |
(GNU_LIBRARY_PENDING_OUTPUT_COUNT): Both definitions
renamed from PENDING_OUTPUT_COUNT.
Diffstat (limited to 'src/s/gnu-linux.h')
| -rw-r--r-- | src/s/gnu-linux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h index d3c5a3ae141..f426c5212b1 100644 --- a/src/s/gnu-linux.h +++ b/src/s/gnu-linux.h | |||
| @@ -158,11 +158,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 158 | #ifdef emacs | 158 | #ifdef emacs |
| 159 | #ifdef _IO_STDIO_H | 159 | #ifdef _IO_STDIO_H |
| 160 | /* new C libio names */ | 160 | /* new C libio names */ |
| 161 | #define PENDING_OUTPUT_COUNT(FILE) \ | 161 | #define GNU_LIBRARY_PENDING_OUTPUT_COUNT(FILE) \ |
| 162 | ((FILE)->_IO_write_ptr - (FILE)->_IO_write_base) | 162 | ((FILE)->_IO_write_ptr - (FILE)->_IO_write_base) |
| 163 | #else /* !_IO_STDIO_H */ | 163 | #else /* !_IO_STDIO_H */ |
| 164 | /* old C++ iostream names */ | 164 | /* old C++ iostream names */ |
| 165 | #define PENDING_OUTPUT_COUNT(FILE) \ | 165 | #define GNU_LIBRARY_PENDING_OUTPUT_COUNT(FILE) \ |
| 166 | ((FILE)->_pptr - (FILE)->_pbase) | 166 | ((FILE)->_pptr - (FILE)->_pbase) |
| 167 | #endif /* !_IO_STDIO_H */ | 167 | #endif /* !_IO_STDIO_H */ |
| 168 | #endif /* emacs */ | 168 | #endif /* emacs */ |