times.h 251 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <Kernel/API/POSIX/sys/times.h>
  8. #include <sys/cdefs.h>
  9. __BEGIN_DECLS
  10. clock_t times(struct tms*);
  11. __END_DECLS