git_revision.c 517 B

12345678910111213141516
  1. /* Copyright 2001-2004 Roger Dingledine.
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2018, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. #include "core/or/git_revision.h"
  6. /** String describing which Tor Git repository version the source was
  7. * built from. This string is generated by a bit of shell kludging in
  8. * src/core/include.am, and is usually right.
  9. */
  10. const char tor_git_revision[] =
  11. #ifndef _MSC_VER
  12. #include "micro-revision.i"
  13. #endif
  14. "";