blob: 69c0f9fb78238c260f6c58794b4c15175ff00fb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* tclMath.h --
*
* This file used to be necessary on the Macintosh.
* It is only kept for backward compatibility purposes.
*
* Copyright (c) 1997 Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* RCS: @(#) $Id: tclMath.h,v 1.3 2004/03/17 18:14:14 das Exp $
*/
#ifndef _TCLMATH
#define _TCLMATH
#include <math.h>
#endif /* _TCLMATH */
|