summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/cos/scoss.c
blob: 1964a25f5007aed64addc4e5f67bd1e58055527d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
**  -*- C -*-
**
** scoss.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Thu Dec  7 11:05:37 2006 jofret
** Last update Thu Dec  7 17:32:52 2006 jofret
**
** Copyright INRIA 2006
*/

#include <math.h>

float		scoss(float x) {
  return (cos(x));
}