summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpgontla <pgontla@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-04-12 15:57:51 +0000
committerpgontla <pgontla@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-04-12 15:57:51 +0000
commit931e14160c6fa7bc9cad0226cf1fad364c6edc43 (patch)
tree04891ab4a8db22df23be0403d603e5e95ecdbe09
parent859cb1a9b42be7868958c01fe473c1d057f3ad2b (diff)
downloadATCD-931e14160c6fa7bc9cad0226cf1fad364c6edc43.tar.gz
ChangeLogTag: Fri Apr 12 08:56:46 2002 Priyanka Gontla <pgontla@ece.uci.edu>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-02a6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--tests/DLL_Test_Impl.cpp3
4 files changed, 20 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6f34f9cf01c..822d4184a7d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Apr 12 08:56:46 2002 Priyanka Gontla <pgontla@ece.uci.edu>
+
+ * tests/DLL_Test_Impl.cpp:
+ Included OS_Errno.h to fix the compilation error about
+ undeclared errno.
+
Fri Apr 12 15:03:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* etc/*.doxygen:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 6f34f9cf01c..822d4184a7d 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Fri Apr 12 08:56:46 2002 Priyanka Gontla <pgontla@ece.uci.edu>
+
+ * tests/DLL_Test_Impl.cpp:
+ Included OS_Errno.h to fix the compilation error about
+ undeclared errno.
+
Fri Apr 12 15:03:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* etc/*.doxygen:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 6f34f9cf01c..822d4184a7d 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Fri Apr 12 08:56:46 2002 Priyanka Gontla <pgontla@ece.uci.edu>
+
+ * tests/DLL_Test_Impl.cpp:
+ Included OS_Errno.h to fix the compilation error about
+ undeclared errno.
+
Fri Apr 12 15:03:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* etc/*.doxygen:
diff --git a/tests/DLL_Test_Impl.cpp b/tests/DLL_Test_Impl.cpp
index b4ecdfa4c8d..b9b5d50e4a8 100644
--- a/tests/DLL_Test_Impl.cpp
+++ b/tests/DLL_Test_Impl.cpp
@@ -17,6 +17,7 @@
// ============================================================================
#include "DLL_Test_Impl.h"
+#include "ace/OS_Errno.h"
#include "ace/svc_export.h"
ACE_RCSID (tests,
@@ -48,7 +49,7 @@ get_hello (void)
ACE_NEW_RETURN (hello,
Hello_Impl,
NULL);
-
+
return hello;
}