summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/utime.h
blob: 71904ba7e74e611e68fecfdb42c05bfd9cf4cbc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <sys/cdefs.h>

__BEGIN_DECLS

int utime(char const* pathname, const struct utimbuf*);

__END_DECLS