qstamp.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. /*============================================================================
  2. * QP/C Real-Time Embedded Framework (RTEF)
  3. * Copyright (C) 2005 Quantum Leaps, LLC. All rights reserved.
  4. *
  5. * SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-QL-commercial
  6. *
  7. * This software is dual-licensed under the terms of the open source GNU
  8. * General Public License version 3 (or any later version), or alternatively,
  9. * under the terms of one of the closed source Quantum Leaps commercial
  10. * licenses.
  11. *
  12. * The terms of the open source GNU General Public License version 3
  13. * can be found at: <www.gnu.org/licenses/gpl-3.0>
  14. *
  15. * The terms of the closed source Quantum Leaps commercial licenses
  16. * can be found at: <www.state-machine.com/licensing>
  17. *
  18. * Redistributions in source code must retain this top-level comment block.
  19. * Plagiarizing this software to sidestep the license obligations is illegal.
  20. *
  21. * Contact information:
  22. * <www.state-machine.com>
  23. * <info@state-machine.com>
  24. ============================================================================*/
  25. /*! @file
  26. * @brief Application build time-stamp
  27. * @deprecated
  28. * File `include/qstamp.c` is kept only for backwards compatibility.
  29. * Instead, please use file `src/qs/qstamp.c`.
  30. */
  31. #include "qstamp.h"
  32. char const Q_BUILD_DATE[12] = __DATE__;
  33. char const Q_BUILD_TIME[9] = __TIME__;