dahdi-version.c 821 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Dahdi Version
  3. *
  4. * Copyright (C) 2001 Jim Dixon / Zapata Telephony.
  5. * Copyright (C) 2011 Digium, Inc.
  6. *
  7. * All rights reserved.
  8. *
  9. */
  10. /*
  11. * See http://www.asterisk.org for more information about
  12. * the Asterisk project. Please do not directly contact
  13. * any of the maintainers of this project for assistance;
  14. * the project provides a web site, mailing lists and IRC
  15. * channels for your use.
  16. *
  17. * This program is free software, distributed under the terms of
  18. * the GNU General Public License Version 2 as published by the
  19. * Free Software Foundation. See the LICENSE file included with
  20. * this program for more details.
  21. */
  22. #include <linux/module.h>
  23. #include <dahdi/version.h>
  24. #include <dahdi/kernel.h>
  25. #include "dahdi.h"
  26. const char *const dahdi_version = DAHDI_VERSION;
  27. MODULE_VERSION(DAHDI_VERSION);