zrtp_legal.h 811 B

12345678910111213141516171819202122232425
  1. /*
  2. * libZRTP SDK library, implements the ZRTP secure VoIP protocol.
  3. * Copyright (c) 2006-2009 Philip R. Zimmermann. All rights reserved.
  4. * Contact: http://philzimmermann.com
  5. * For licensing and other legal details, see the file zrtp_legal.c.
  6. *
  7. * Viktor Krykun <v.krikun at zfoneproject.com>
  8. */
  9. #ifndef __ZRTP_LEGAL_H__
  10. #define __ZRTP_LEGAL_H__
  11. /*
  12. * We want the copyright string accessable to the unix strings command in
  13. * the linked binary, and don't want the linker to remove it if it's not
  14. * referenced, thus the volatile qualifier.
  15. *
  16. * ANSI C standard, section 3.5.3: "An object that has volatile-qualified
  17. * type may be modified in ways unknown to the implementation or have
  18. * other unknown side effects."
  19. */
  20. extern volatile const char zrtpCopyright[];
  21. #endif /*__ZRTP_LEGAL_H__ */