1/*
2 * tkUnixInt.h --
3 *
4 *	This file contains declarations that are shared among the
5 *	UNIX-specific parts of Tk but aren't used by the rest of Tk.
6 *
7 * Copyright (c) 1995-1997 Sun Microsystems, Inc.
8 *
9 * See the file "license.terms" for information on usage and redistribution of
10 * this file, and for a DISCLAIMER OF ALL WARRANTIES.
11 *
12 * RCS: @(#) $Id$
13 */
14
15#ifndef _TKUNIXINT
16#define _TKUNIXINT
17
18#ifndef _TKINT
19#include "tkInt.h"
20#endif
21
22/*
23 * Prototypes for procedures that are referenced in files other than the ones
24 * they're defined in.
25 */
26
27#include "tkIntPlatDecls.h"
28
29#endif /* _TKUNIXINT */
30
31/*
32 * Local Variables:
33 * mode: c
34 * c-basic-offset: 4
35 * fill-column: 78
36 * End:
37 */
38