// Permission to copy, use, sell and distribute this software is granted // provided this copyright notice appears in all copies. // Permission to modify the code and to distribute modified code is granted // provided this copyright notice appears in all copies, and a notice // that the code was modified is included with the copyright notice. // // This software is provided "as is" without express or implied warranty, // and with no claim as to its suitability for any purpose. // #ifndef MISSING_PROTOS_HPP #define MISSING_PROTOS_HPP /* Hack by jbw for gcc 3.3 on Mac OS X 10.3.9 */ #if defined(__DARWIN_OSX__) && defined(__USE_OSX_IMPLEMENTATION__) && (__APPLE_CC__==1666) typedef double double_t; typedef int _scalb_n_type; extern double_t scalb(double_t x, _scalb_n_type n); #endif /* defined(__DARWIN_OSX__) && defined(__USE_OSX_IMPLEMENTATION__) && (__APPLE_CC__==1666) */ #endif /* MISSING_PROTOS_HPP */