From 2240ba10f30315410bcff77e372ee71664ac4453 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 19 Feb 2010 08:12:31 -0700 Subject: mesa: replace old MEMSET macro with memset --- src/mesa/main/imports.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/mesa/main/imports.h') diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index c4e28df051..048ae912c9 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -71,9 +71,6 @@ extern "C" { /** Free aligned memory */ #define ALIGN_FREE(PTR) _mesa_align_free(PTR) -/** Set \p N bytes in \p DST to \p VAL */ -#define MEMSET( DST, VAL, N ) memset(DST, VAL, N) - /*@}*/ -- cgit v1.2.3