blob: a1f1a2ab0c5eb77005bf3b48a59260419e58e7f3 [file] [log] [blame]
// Copyright (C) 2017 The Android Open Source Project
// SPDX-License-Identifier: BSD-2-Clause
#include <sys/times.h>
#include "header_checks.h"
static void sys_times_h() {
TYPE(struct tms);
STRUCT_MEMBER(struct tms, clock_t, tms_utime);
STRUCT_MEMBER(struct tms, clock_t, tms_stime);
STRUCT_MEMBER(struct tms, clock_t, tms_cutime);
STRUCT_MEMBER(struct tms, clock_t, tms_cstime);
TYPE(clock_t);
FUNCTION(times, clock_t (*f)(struct tms*));
}