mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
236cf49670
OS X's ar(1) doesn't allow us to create an archive with no object files. This patch adds a stub file with a stub function in it to make OS X happy again.
12 lines
183 B
C
12 lines
183 B
C
/* Copyright (c) 2017, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
#include "trace.h"
|
|
|
|
/** Initialize the tracing library. */
|
|
void
|
|
tor_trace_init(void)
|
|
{
|
|
}
|
|
|