summaryrefslogtreecommitdiffstats
path: root/gnu/libexec/uucp/libunix/time.c
blob: d0462433a7dd0731624fd229fc8d79b2d08209dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* time.c
   Get the current time.  */

#include "uucp.h"

#if HAVE_TIME_H
#include <time.h>
#endif

#include "system.h"

#ifndef time
extern time_t time ();
#endif

/* Get the time in seconds since the epoch, with optional
   microseconds.  We use ixsysdep_process_time to get the microseconds
   if it will work (it won't if it uses times, since that returns a
   time based only on the process).  */

long
ixsysdep_time (pimicros)
     long *pimicros;
{
#if HAVE_GETTIMEOFDAY || HAVE_FTIME
  return ixsysdep_process_time (pimicros);
#else
  if (pimicros != NULL)
    *pimicros = 0;
  return (long) time ((time_t *) NULL);
#endif
}
OpenPOWER on IntegriCloud