testsupport.h 227 B

1234567891011121314
  1. /* Copyright (c) 2013, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. #ifndef TOR_TESTSUPPORT_H
  4. #define TOR_TESTSUPPORT_H
  5. #ifdef TOR_UNIT_TESTS
  6. #define STATIC
  7. #else
  8. #define STATIC static
  9. #endif
  10. #endif