1 // Copyright 2020 Andrey Semashev 2 3 // Distributed under the Boost Software License, Version 1.0. 4 // See http://www.boost.org/LICENSE_1_0.txt 5 6 // See library home page at http://www.boost.org/libs/filesystem 7 8 #include <sys/types.h> 9 #include <sys/stat.h> 10 #include <unistd.h> 11 main()12int main() 13 { 14 struct stat st; 15 st.st_mtimensec = 10; 16 } 17