posix_fadvise.c (348B)
- // utils-std: Collection of commonly available Unix tools
- // Copyright 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
- // SPDX-License-Identifier: 0BSD
- #define _POSIX_C_SOURCE 200809L
- #include <fcntl.h>
- int
- main(void)
- {
- int fd = 1;
- off_t offset = 0;
- off_t len = 0;
- return posix_fadvise(fd, offset, len, POSIX_FADV_SEQUENTIAL);
- }