blob: ca8a86960ca72b4aff1600cc565cf709644ba269 [file] [log] [blame]
Elliott Hughes13da6002025-02-03 10:42:13 -08001// Copyright (C) 2017 The Android Open Source Project
2// SPDX-License-Identifier: BSD-2-Clause
Elliott Hughes21b56eb2017-10-20 17:57:17 -07003
4#include <utime.h>
5
6#include "header_checks.h"
7
8static void utime_h() {
9 TYPE(struct utimbuf);
10 STRUCT_MEMBER(struct utimbuf, time_t, actime);
11 STRUCT_MEMBER(struct utimbuf, time_t, modtime);
12
13 TYPE(time_t);
14
15 FUNCTION(utime, int (*f)(const char*, const struct utimbuf*));
16}