blob: c094c6380c174f245c02225b96a95ac40c496a78 [file] [log] [blame]
The Android Open Source Project10e23ee2009-03-03 19:30:30 -08001/**
2 * @file op_get_time.c
3 * Get current time as a string
4 *
5 * @remark Copyright 2002 OProfile authors
6 * @remark Read the file COPYING
7 *
8 * @author John Levon
9 * @author Philippe Elie
10 */
11
12#include "op_get_time.h"
13
14#include <time.h>
15
16char * op_get_time(void)
17{
18 time_t t = time(NULL);
19
20 if (t == -1)
21 return "";
22
23 return ctime(&t);
24}