Skip to content
Snippets Groups Projects
Commit 06ca7d32 authored by Raymond Toy's avatar Raymond Toy
Browse files

Add include guard.

parent 3533a13a
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,8 @@
* ====================================================
*/
#ifndef FDLIBM_H_
#define FDLIBM_H_
/* Sometimes it's necessary to define __LITTLE_ENDIAN explicitly
but these catch some common cases. */
......@@ -48,3 +50,5 @@ extern double __kernel_tan(double x, double y, int iy);
extern double sin(double x);
extern double cos(double x);
extern double tan(double x);
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment