summaryrefslogtreecommitdiff
path: root/test/ctime.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/ctime.c')
-rw-r--r--test/ctime.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/ctime.c b/test/ctime.c
new file mode 100644
index 0000000..9386cd6
--- /dev/null
+++ b/test/ctime.c
@@ -0,0 +1,12 @@
+/*
+ * Items: ctime(
+ * Standardized-By: SuS
+ * Detected-by: gcc-4.4.3 + Linux
+ */
+
+#include <time.h>
+
+main(int arg, char **argv)
+{
+ (void)ctime(NULL);
+}