times.h 345 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <sys/cdefs.h>
  8. #include <sys/types.h>
  9. __BEGIN_DECLS
  10. struct tms {
  11. clock_t tms_utime;
  12. clock_t tms_stime;
  13. clock_t tms_cutime;
  14. clock_t tms_cstime;
  15. };
  16. clock_t times(struct tms*);
  17. __END_DECLS