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/main/dispatch.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/main/dispatch.c')
-rw-r--r-- | src/mesa/main/dispatch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/dispatch.c b/src/mesa/main/dispatch.c index 0ed24afd30a..463bdb70d04 100644 --- a/src/mesa/main/dispatch.c +++ b/src/mesa/main/dispatch.c @@ -1,4 +1,4 @@ -/* $Id: dispatch.c,v 1.26 2001/12/15 16:42:59 brianp Exp $ */ +/* $Id: dispatch.c,v 1.27 2002/06/29 19:48:15 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -62,7 +62,7 @@ #endif -#if 0 /* Use this to log GL calls to stdout */ +#if 0 /* Use this to log GL calls to stdout (for DEBUG only!) */ #define F stdout #define DISPATCH(FUNC, ARGS, MESSAGE) \ |