blob: 0a20cc0c5fcfeccbbe12cc845bf5d9143d8f1243 [file] [log] [blame]
// 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_birthtime = 1;
st.st_birthtimensec = 10;
}