ATLAS Offline Software
Loading...
Searching...
No Matches
sincosf.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5// $Id$
12
13#include "CxxUtils/sincosf.h"
14#include <cmath>
15
16#ifdef __APPLE__
17void sincosf(float x, float* sn, float* cs)
18{
19 *sn = std::sin(x);
20 *cs = std::cos(x);
21}
22#endif
#define x
Provide sincosf function for MacOSX.