X-Git-Url: http://git.chise.org/gitweb/?p=chise%2Fxemacs-chise.git.1;a=blobdiff_plain;f=src%2Flstream.h;h=b9b0fc246d3d630d2d9baaad745a2303ba9073df;hp=110804575bee7896d154eab87d96dccf2e110e71;hb=716cfba952c1dc0d2cf5c968971f3780ba728a89;hpb=d74da9234cc42e8018b1500105c3892a5c46d5e3 diff --git a/src/lstream.h b/src/lstream.h index 1108045..b9b0fc2 100644 --- a/src/lstream.h +++ b/src/lstream.h @@ -23,8 +23,8 @@ Boston, MA 02111-1307, USA. */ /* Written by Ben Wing. */ -#ifndef _XEMACS_LSTREAM_H_ -#define _XEMACS_LSTREAM_H_ +#ifndef INCLUDED_lstream_h_ +#define INCLUDED_lstream_h_ /************************************************************************/ /* definition of Lstream object */ @@ -339,10 +339,8 @@ int filedesc_stream_fd (Lstream *stream); Lisp_Object make_lisp_string_input_stream (Lisp_Object string, Bytecount offset, Bytecount len); -Lisp_Object make_fixed_buffer_input_stream (CONST unsigned char *buf, - size_t size); -Lisp_Object make_fixed_buffer_output_stream (unsigned char *buf, - size_t size); +Lisp_Object make_fixed_buffer_input_stream (CONST void *buf, size_t size); +Lisp_Object make_fixed_buffer_output_stream (void *buf, size_t size); CONST unsigned char *fixed_buffer_input_stream_ptr (Lstream *stream); unsigned char *fixed_buffer_output_stream_ptr (Lstream *stream); Lisp_Object make_resizing_buffer_output_stream (void); @@ -356,4 +354,4 @@ Lisp_Object make_lisp_buffer_output_stream (struct buffer *buf, Bufpos pos, int flags); Bufpos lisp_buffer_stream_startpos (Lstream *stream); -#endif /* _XEMACS_LSTREAM_H_ */ +#endif /* INCLUDED_lstream_h_ */