version.c 469 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 1997-2010, 2012-2014 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <zephyr/types.h>
  7. #include "version.h" /* generated by MAKE, at compile time */
  8. /**
  9. * @brief Return the kernel version of the present build
  10. *
  11. * The kernel version is a four-byte value, whose format is described in the
  12. * file "kernel_version.h".
  13. *
  14. * @return kernel version
  15. */
  16. uint32_t sys_kernel_version_get(void)
  17. {
  18. return KERNELVERSION;
  19. }