This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMU Common Lisp".
The branch, master has been updated via 06ca7d326f688d40ad8730bbd2faa8ca7813d2f0 (commit) from 3533a13a8cc53e43a7c4d7d27b3e6b8bcc004672 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 06ca7d326f688d40ad8730bbd2faa8ca7813d2f0 Author: Raymond Toy toy.raymond@gmail.com Date: Sat Jul 26 08:29:22 2014 -0700
Add include guard.
diff --git a/src/lisp/fdlibm.h b/src/lisp/fdlibm.h index 61794b3..467daa5 100644 --- a/src/lisp/fdlibm.h +++ b/src/lisp/fdlibm.h @@ -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
-----------------------------------------------------------------------
Summary of changes: src/lisp/fdlibm.h | 4 ++++ 1 file changed, 4 insertions(+)
hooks/post-receive