timer.c 297 B

12345678
  1. // Copyright 2023 Sergey Vlasov (@sigprof)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #include "timer.h"
  4. // Generate out-of-line copies for inline functions defined in timer.h.
  5. extern inline fast_timer_t timer_read_fast(void);
  6. extern inline fast_timer_t timer_elapsed_fast(fast_timer_t last);