ladybird/Userland/Libraries/LibC/utime.h

16 lines
239 B
C
Raw Normal View History

/*
* 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(const char* pathname, const struct utimbuf*);
__END_DECLS