trace.c 351 B

1234567891011121314151617
  1. /* Copyright (c) 2017-2018, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file trace.c
  5. * \brief Common functions for event-tracing implementation
  6. *
  7. * See trace.h and doc/HACKING/Tracing.md for more information.
  8. **/
  9. #include "lib/trace/trace.h"
  10. /** Initialize the tracing library. */
  11. void
  12. tor_trace_init(void)
  13. {
  14. }