/*-----------------------------------------------------------------------------
Filename   : function.h
Name       : Tristan Miller
SID#       : 123456789
Description: f(x) and its derivative, to be called by root.c
-----------------------------------------------------------------------------*/

#ifndef FUNCTION__H
#define FUNCTION__H

double f(double x);
double fprime(double x);

#endif

