summaryrefslogtreecommitdiff
path: root/src/sin.c
diff options
context:
space:
mode:
authorenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2011-01-07 19:43:08 +0000
committerenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2011-01-07 19:43:08 +0000
commit3ae11cc9f264f654e92709d6c6562a8e62a4dd70 (patch)
treeb47944ced60d4ab0e5257171daa724e4f8ff5dc5 /src/sin.c
parent3b44845cd9e4242651c760ce642feb8ac41b8348 (diff)
downloadmpc-3ae11cc9f264f654e92709d6c6562a8e62a4dd70.tar.gz
moved trivial contents of sin.c and cos.c into sin_cos.c
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@860 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'src/sin.c')
-rw-r--r--src/sin.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/sin.c b/src/sin.c
deleted file mode 100644
index 6581e56..0000000
--- a/src/sin.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/* mpc_sin -- sine of a complex number.
-
-Copyright (C) 2007, 2009, 2010, 2011 Paul Zimmermann, Philippe Th\'eveny, Andreas Enge
-
-This file is part of the MPC Library.
-
-The MPC Library is free software; you can redistribute it and/or modify
-it under the terms of the GNU Lesser General Public License as published by
-the Free Software Foundation; either version 2.1 of the License, or (at your
-option) any later version.
-
-The MPC Library is distributed in the hope that it will be useful, but
-WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
-License for more details.
-
-You should have received a copy of the GNU Lesser General Public License
-along with the MPC Library; see the file COPYING.LIB. If not, write to
-the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
-MA 02111-1307, USA. */
-
-#include "mpc-impl.h"
-
-int
-mpc_sin (mpc_ptr rop, mpc_srcptr op, mpc_rnd_t rnd)
-{
- return MPC_INEX1 (mpc_sin_cos (rop, NULL, op, rnd, 0));
-}