]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/filesystem/config/has_stat_st_birthtimespec.cpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / filesystem / config / has_stat_st_birthtimespec.cpp
CommitLineData
20effc67
TL
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
14int main()
15{
16 struct stat st;
17 st.st_birthtimespec.tv_sec = 1;
18 st.st_birthtimespec.tv_nsec = 10;
19}