summaryrefslogtreecommitdiff
path: root/ace/Basic_Types.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Basic_Types.cpp')
-rw-r--r--ace/Basic_Types.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/ace/Basic_Types.cpp b/ace/Basic_Types.cpp
deleted file mode 100644
index 6e4aec6d205..00000000000
--- a/ace/Basic_Types.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-// $Id$
-
-#define ACE_BUILD_DLL
-
-#include "ace/OS.h"
-#if !defined (__ACE_INLINE__)
-# include "ace/Basic_Types.i"
-#endif /* ! __ACE_INLINE__ */
-
-#if defined (ACE_LACKS_LONGLONG_T)
-
-void
-ACE_U_LongLong::output (FILE *file) const
-{
- if (hi_ > 0)
- ACE_OS::fprintf (file, "0x%lx%0*lx", hi_, 2 * sizeof lo_, lo_);
- else
- ACE_OS::fprintf (file, "0x%lx", lo_);
-}
-
-#endif /* ACE_LACKS_LONGLONG_T */
-