summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--performance-tests/SCTP/hist.cpp3
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 471b2ab7fb4..39cd0b58fee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Oct 19 21:25:59 2003 Venkita Subramonian <venkita@cs.wustl.edu>
+
+ * performance-tests/SCTP/hist.cpp: Fixed fuzz errors. Include
+ "ace/os_include/os_math.h" instead of math.h.
+
Sun Oct 19 21:16:44 2003 Venkita Subramonian <venkita@cs.wustl.edu>
* apps/JAWS3/http/HTTP_Service_Handler.h:
diff --git a/performance-tests/SCTP/hist.cpp b/performance-tests/SCTP/hist.cpp
index fbac95d1a98..81197b7939e 100644
--- a/performance-tests/SCTP/hist.cpp
+++ b/performance-tests/SCTP/hist.cpp
@@ -29,7 +29,7 @@
#include <stdlib.h>
#include <float.h>
#include <string.h>
-#include <math.h>
+#include "ace/os_include/os_math.h"
#include "hist.h"
hist_t *head_hist, *tail_hist;
@@ -301,4 +301,3 @@ double histfloor(double x) {
#endif
}
-