mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
15 lines
308 B
C
15 lines
308 B
C
/* Copyright (c) 2018, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
/**
|
|
* \file log_time.h
|
|
* \brief Declare subsystem object for the time module.
|
|
**/
|
|
|
|
#ifndef TOR_TIME_SYS_H
|
|
#define TOR_TIME_SYS_H
|
|
|
|
extern const struct subsys_fns_t sys_time;
|
|
|
|
#endif /* !defined(TOR_TIME_SYS_H) */
|