summaryrefslogtreecommitdiff
path: root/ACE/examples/Misc/test_timestamp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Misc/test_timestamp.cpp')
-rw-r--r--ACE/examples/Misc/test_timestamp.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/ACE/examples/Misc/test_timestamp.cpp b/ACE/examples/Misc/test_timestamp.cpp
deleted file mode 100644
index e61ddace9b3..00000000000
--- a/ACE/examples/Misc/test_timestamp.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-// $Id$
-
-// Test the ACE::timestamp method.
-
-#include "ace/OS_main.h"
-#include "ace/ACE.h"
-#include "ace/Log_Msg.h"
-
-ACE_RCSID(Misc, test_timestamp, "$Id$")
-
-int
-ACE_TMAIN (int, ACE_TCHAR *[])
-{
- ACE_TCHAR day_and_time[35];
- ACE::timestamp (day_and_time,
- sizeof day_and_time);
-
- ACE_DEBUG ((LM_DEBUG, "%s", day_and_time));
-
- return 0;
-}