boost/libs/filesystem/config/has_stat_st_mtim.cpp
2021-10-05 21:37:46 +02:00

19 lines
374 B
C++

// Copyright 2020 Andrey Semashev
// Distributed under the Boost Software License, Version 1.0.
// See http://www.boost.org/LICENSE_1_0.txt
// See library home page at http://www.boost.org/libs/filesystem
#include "platform_config.hpp"
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
int main()
{
struct stat st;
st.st_mtim.tv_nsec = 10;
}