diff options
author | Brian Paul <[email protected]> | 2002-10-30 19:49:29 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-10-30 19:49:29 +0000 |
commit | 6ec6b845fdf3c44436028ad6fff9471d18928719 (patch) | |
tree | 28496bfcefc250606eef9e1ccb201ae22aa099b6 /src/mesa/main/imports.h | |
parent | 9dc11a3e38a0ac0e650675157a0ccb90dcdce976 (diff) |
s/BZERO/_mesa_bzero/
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 463b9cafb9c..35c06d21538 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -1,8 +1,8 @@ -/* $Id: imports.h,v 1.7 2002/10/25 21:06:29 brianp Exp $ */ +/* $Id: imports.h,v 1.8 2002/10/30 19:49:29 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 4.1 + * Version: 5.0 * * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. * @@ -49,7 +49,6 @@ #define MEMCPY( DST, SRC, BYTES) _mesa_memcpy(DST, SRC, BYTES) #define MEMSET( DST, VAL, N ) _mesa_memset(DST, VAL, N) -#define BZERO( ADDR, N ) _mesa_bzero(ADDR, N) /* MACs and BeOS don't support static larger than 32kb, so... */ |