summaryrefslogtreecommitdiff
path: root/src/c/elementaryFunctions/Trigonometry/sec/ssecs.c
blob: 2c9e018f17c1b320b3b9e02efa629ce459a1c8d8 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "sec.h"

float ssecs(float in)
{
  return (1/cos(in));
}