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