tclMath.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * tclMath.h --
  3.  *
  4.  * This file is necessary because of Metrowerks CodeWarrior Pro 1
  5.  * on the Macintosh. With 8-byte doubles turned on, the definitions of
  6.  * sin, cos, acos, etc., are screwed up.  They are fine as long as
  7.  * they are used as function calls, but if the function pointers
  8.  * are passed around and used, they will crash hard on the 68K.
  9.  *
  10.  * Copyright (c) 1997 Sun Microsystems, Inc.
  11.  *
  12.  * See the file "license.terms" for information on usage and redistribution
  13.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  14.  *
  15.  * RCS: @(#) $Id: tclMath.h,v 1.2 1998/09/14 18:40:01 stanton Exp $
  16.  */
  17. #ifndef _TCLMATH
  18. #define _TCLMATH
  19. #if defined(MAC_TCL)
  20. #   include "tclMacMath.h"
  21. #else
  22. #   include <math.h>
  23. #endif
  24. #endif /* _TCLMATH */