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 "platform_config.hpp"
9 
10 #include <sys/types.h>
11 #include <sys/stat.h>
12 #include <unistd.h>
13 
main()14 int main()
15 {
16     struct stat st;
17     st.st_birthtimespec.tv_sec = 1;
18     st.st_birthtimespec.tv_nsec = 10;
19 }
20