version.c 706 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * lib/version.c Run-time version information
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation version 2.1
  7. * of the License.
  8. *
  9. * Copyright (c) 2003-2012 Thomas Graf <tgraf@suug.ch>
  10. */
  11. /**
  12. * @ingroup core
  13. * @defgroup utils Utilities
  14. *
  15. * Run-time version information
  16. *
  17. * @{
  18. */
  19. /**
  20. * @name Run-time version information
  21. * @{
  22. */
  23. #include <netlink/version.h>
  24. const int nl_ver_num = LIBNL_VER_NUM;
  25. const int nl_ver_maj = LIBNL_VER_MAJ;
  26. const int nl_ver_min = LIBNL_VER_MIN;
  27. const int nl_ver_mic = LIBNL_VER_MIC;
  28. /** @} */
  29. /** @} */