Moving the ASCII writer over to use UNIX I/O rather than stdio.

This commit is contained in:
Robin Sommer 2012-07-17 19:02:36 -07:00
parent f6b883bafc
commit e90918aa50
4 changed files with 24 additions and 24 deletions

View file

@ -1292,7 +1292,6 @@ uint64 calculate_unique_id(size_t pool)
bool safe_write(int fd, const char* data, int len)
{
return true;
while ( len > 0 )
{
int n = write(fd, data, len);