~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/sin.cc

  • Committer: Monty Taylor
  • Date: 2008-12-10 20:07:04 UTC
  • mto: (670.1.19 devel)
  • mto: This revision was merged to the branch mainline in revision 672.
  • Revision ID: monty@inaugust.com-20081210200704-b0dcfgmttnzmw5j1
Imported patch from LinuxJedi to add import status messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 */
19
19
 
20
20
#include <drizzled/server_includes.h>
21
 
#include <drizzled/function/math/sin.h>
 
21
#include CSTDINT_H
 
22
#include <drizzled/functions/sin.h>
 
23
#include CMATH_H
 
24
 
 
25
#if defined(CMATH_NAMESPACE)
 
26
using namespace CMATH_NAMESPACE;
 
27
#endif
22
28
 
23
29
double Item_func_sin::val_real()
24
30
{