diff options
author | Brian Paul <[email protected]> | 2002-06-29 19:48:15 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-06-29 19:48:15 +0000 |
commit | 4e9676fb13f60ecdbc247b120031f18cd3febcb0 (patch) | |
tree | 9f310d4b547592b025b5a7063aaf2b629bef6676 /src/mesa/x86/common_x86.c | |
parent | f1ad551604122dd2679dbd31ae6b2fa1197e9848 (diff) |
Applied Matt Sealey's patch to remove/isolate all stdio.h function calls.
Instead of mstdio.[ch], use imports.[ch] to isolate these functions.
Diffstat (limited to 'src/mesa/x86/common_x86.c')
-rw-r--r-- | src/mesa/x86/common_x86.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/x86/common_x86.c b/src/mesa/x86/common_x86.c index 30d70d233c4..bcffb6a01be 100644 --- a/src/mesa/x86/common_x86.c +++ b/src/mesa/x86/common_x86.c @@ -1,4 +1,4 @@ -/* $Id: common_x86.c,v 1.17 2002/04/09 14:58:03 keithw Exp $ */ +/* $Id: common_x86.c,v 1.18 2002/06/29 19:48:17 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -225,6 +225,7 @@ static void check_os_sse_support( void ) void _mesa_init_all_x86_transform_asm( void ) { + (void) message; /* silence warning */ #ifdef USE_X86_ASM _mesa_x86_cpu_features = _mesa_identify_x86_cpu_features(); |