aboutsummaryrefslogtreecommitdiff
path: root/src/common/testsupport.h
blob: 621fd8c833d1a46024ac7128521675966d5fd75e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Copyright (c) 2013, The Tor Project, Inc. */
/* See LICENSE for licensing information */

#ifndef TOR_TESTSUPPORT_H
#define TOR_TESTSUPPORT_H

#ifdef TOR_UNIT_TESTS
#define STATIC_UNLESS_TESTING
#else
#define STATIC_UNLESS_TESTING static
#endif

#endif