ENH: remove c++ comments from c code

This commit is contained in:
Bill Hoffman 2006-08-14 17:30:58 -04:00
parent 78275f1d4b
commit ff4886fa53
1 changed files with 0 additions and 4 deletions

View File

@ -465,8 +465,6 @@ int output(struct cmcompress_stream* cdata, code_int code)
do
{
if ( cdata->output_stream(cdata, bp, 1) != 1 )
//putchar(*bp++);
//if (ferror(stdout))
{
return 0;
}
@ -489,7 +487,6 @@ int output(struct cmcompress_stream* cdata, code_int code)
if ( cdata->offset > 0 )
{
if ( cdata->output_stream(cdata, buf, cdata->n_bits) != cdata->n_bits )
//if( fwrite( buf, 1, cdata->n_bits, stdout ) != cdata->n_bits)
{
return 0;
}
@ -532,7 +529,6 @@ int output(struct cmcompress_stream* cdata, code_int code)
{
cdata->offset = (cdata->offset + 7) / 8;
if ( cdata->output_stream(cdata, buf, cdata->offset ) != cdata->offset )
//if( fwrite( buf, 1, cdata->offset, stdout ) != cdata->offset )
{
return 0;
}