1 /**
2  * \file   _sin.c
3  * \brief  sin() wrapper
4  *
5  * \date   2009-10
6  * \author Adam Lackorzynski <adam@os.inf.tu-dresden.de>
7  *
8  */
9 /*
10  * (c) 2009 Author(s)
11  *     economic rights: Technische Universität Dresden (Germany)
12  * This file is part of TUD:OS and distributed under the terms of the
13  * GNU Lesser General Public License 2.1.
14  * Please see the COPYING-LGPL-2.1 file for details.
15  */
16 
17 #include <math.h>
18 
19 double _sin(double x);
_sin(double x)20 double _sin(double x)
21 {
22   return sin(x);
23 }
24 
25 float _sinf(float x);
_sinf(float x)26 float _sinf(float x)
27 {
28   return sinf(x);
29 }
30