utimens.h 397 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) 2018-2022, Andreas Kling <kling@serenityos.org>
  3. * Copyright (c) 2021, sin-ack <sin-ack@protonmail.com>
  4. *
  5. * SPDX-License-Identifier: BSD-2-Clause
  6. */
  7. #pragma once
  8. #include <Kernel/API/POSIX/fcntl.h>
  9. #include <Kernel/API/POSIX/sys/stat.h>
  10. #include <sys/cdefs.h>
  11. __BEGIN_DECLS
  12. int __utimens(int fd, char const* path, struct timespec const times[2], int flag);
  13. __END_DECLS