1 #ifndef POSIXX_BUFFER_HPP_
2 #define POSIXX_BUFFER_HPP_
4 #include "basic_buffer.hpp" // posixx::basic_buffer
6 #include <cstdlib> // std::realloc()
10 /// A buffer that uses realloc(3) for memory management.
11 typedef basic_buffer< &std::realloc > buffer;
15 #endif // POSIXX_BUFFER_HPP_