tor_gettimeofday.h 467 B

1234567891011121314151617181920
  1. /* Copyright (c) 2003-2004, Roger Dingledine
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2019, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /**
  6. * \file tor_gettimeofday.h
  7. * \brief Header for tor_gettimeofday.c
  8. **/
  9. #ifndef TOR_GETTIMEOFDAY_H
  10. #define TOR_GETTIMEOFDAY_H
  11. #include "lib/testsupport/testsupport.h"
  12. struct timeval;
  13. MOCK_DECL(void, tor_gettimeofday, (struct timeval *timeval));
  14. #endif