Rename some #defines such as MAX_BLOCK_SIZE to _MAX_BLOCK_SIZE and such

so as to not pollute application namespace.
This commit is contained in:
Ben Gras
2005-11-14 18:41:27 +00:00
parent 549e0bb855
commit dd99ee67e0
13 changed files with 51 additions and 51 deletions

View File

@@ -241,6 +241,6 @@ PUBLIC void zero_block(bp)
register struct buf *bp; /* pointer to buffer to zero */
{
/* Zero a block. */
memset(bp->b_data, 0, MAX_BLOCK_SIZE);
memset(bp->b_data, 0, _MAX_BLOCK_SIZE);
bp->b_dirt = DIRTY;
}