diff options
author | stanton <stanton> | 1999-06-02 18:15:54 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-06-02 18:15:54 (GMT) |
commit | 95719c382eceb24ef2f3ae5dec2fc037f238118f (patch) | |
tree | f2d1dcbdc9268e15cde481b2d3a32f5d874ed329 /xlib | |
parent | f2be6a0748d89fe4d5446588e1924790eb167887 (diff) | |
download | tk-95719c382eceb24ef2f3ae5dec2fc037f238118f.zip tk-95719c382eceb24ef2f3ae5dec2fc037f238118f.tar.gz tk-95719c382eceb24ef2f3ae5dec2fc037f238118f.tar.bz2 |
* generic/tkIntXlibDecls.h:
* xlib/X11/Xlib.h: Added Mac specific defines to help with
compilation.
* generic/tkFont.c: lint
Diffstat (limited to 'xlib')
-rw-r--r-- | xlib/X11/Xlib.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xlib/X11/Xlib.h b/xlib/X11/Xlib.h index 360e951..a6bb591 100644 --- a/xlib/X11/Xlib.h +++ b/xlib/X11/Xlib.h @@ -58,7 +58,11 @@ typedef unsigned long wchar_t; typedef char *XPointer; #define Bool int +#ifdef MAC_TCL +#define Status int +#else typedef int Status; +#endif #define True 1 #define False 0 |