summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2004-10-04 20:38:03 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2004-10-04 20:38:03 +0000
commit767fa2a51b48d3cd27f4f3e53212826d10d0a24b (patch)
tree8678f5994f32a715edd5fd7f5a4658689c613abd /ace
parente7c9a4a6e48bfdda67295102643373e4812490fa (diff)
downloadATCD-767fa2a51b48d3cd27f4f3e53212826d10d0a24b.tar.gz
ChangeLogTag:Mon Oct 4 13:34:08 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'ace')
-rw-r--r--ace/OS_NS_stdlib.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ace/OS_NS_stdlib.cpp b/ace/OS_NS_stdlib.cpp
index 4ab01e98f68..6c9e5bca0d8 100644
--- a/ace/OS_NS_stdlib.cpp
+++ b/ace/OS_NS_stdlib.cpp
@@ -23,6 +23,7 @@ ACE_RCSID (ace,
#if defined (ACE_LACKS_MKSTEMP)
# include "ace/OS_NS_fcntl.h"
+# include "ace/OS_NS_ctype.h"
# include "ace/OS_NS_sys_time.h"
# include <limits>
@@ -642,7 +643,7 @@ ACE_OS::mkstemp_emulation (ACE_TCHAR * s)
do
{
r =
- static_cast<ACE_TCHAR> (coefficient * ACE_OS::rand_r (&seed));
+ static_cast<ACE_TCHAR> (coefficient * ACE_OS::rand_r (seed));
}
while (!ACE_OS::ace_isalnum (r));