aboutsummaryrefslogtreecommitdiff
path: root/src/buffer.h
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2003-03-28 21:08:50 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2003-03-28 21:08:50 +0000
commitf18d1b7cd0ec4708518ab5e18ea33b6eadca0301 (patch)
treee831c6b1957af47db1301675b52c0d2a2e315fa7 /src/buffer.h
parent307603b24dde69eac62d2cb52123488137520c9c (diff)
downloadluasocket-f18d1b7cd0ec4708518ab5e18ea33b6eadca0301.tar.gz
luasocket-f18d1b7cd0ec4708518ab5e18ea33b6eadca0301.tar.bz2
luasocket-f18d1b7cd0ec4708518ab5e18ea33b6eadca0301.zip
Closer to release...
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 7463a67..4943e3b 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -1,5 +1,6 @@
1/*=========================================================================*\ 1/*=========================================================================*\
2* Buffered input/output routines 2* Buffered input/output routines
3*
3* RCS ID: $Id$ 4* RCS ID: $Id$
4\*=========================================================================*/ 5\*=========================================================================*/
5#ifndef BUF_H_ 6#ifndef BUF_H_
@@ -16,7 +17,7 @@
16\*-------------------------------------------------------------------------*/ 17\*-------------------------------------------------------------------------*/
17typedef struct t_buf_tag { 18typedef struct t_buf_tag {
18 size_t buf_first, buf_last; 19 size_t buf_first, buf_last;
19 uchar buf_data[BUF_SIZE]; 20 char buf_data[BUF_SIZE];
20 p_base buf_base; 21 p_base buf_base;
21} t_buf; 22} t_buf;
22typedef t_buf *p_buf; 23typedef t_buf *p_buf;