1 #ifndef POSIXX_BUFFER_HPP_
2 #define POSIXX_BUFFER_HPP_
4 #include "basic_buffer.hpp" // posixx::basic_buffer
8 /// A buffer that uses realloc(3) for memory management.
9 typedef basic_buffer< unsigned char > buffer;
13 #endif // POSIXX_BUFFER_HPP_