Blame io/bits/types/struct_statx_timestamp.h

Packit Service f5a052
/* Definition of the generic version of struct statx_timestamp.
Packit Service f5a052
   Copyright (C) 2018-2019 Free Software Foundation, Inc.
Packit Service f5a052
   This file is part of the GNU C Library.
Packit Service f5a052
Packit Service f5a052
   The GNU C Library is free software; you can redistribute it and/or
Packit Service f5a052
   modify it under the terms of the GNU Lesser General Public
Packit Service f5a052
   License as published by the Free Software Foundation; either
Packit Service f5a052
   version 2.1 of the License, or (at your option) any later version.
Packit Service f5a052
Packit Service f5a052
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service f5a052
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service f5a052
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service f5a052
   Lesser General Public License for more details.
Packit Service f5a052
Packit Service f5a052
   You should have received a copy of the GNU Lesser General Public
Packit Service f5a052
   License along with the GNU C Library; if not, see
Packit Service f5a052
   <http://www.gnu.org/licenses/>.  */
Packit Service f5a052
Packit Service f5a052
#ifndef _SYS_STAT_H
Packit Service f5a052
# error Never include <bits/types/struct_statx_timestamp.h> directly, include <sys/stat.h> instead.
Packit Service f5a052
#endif
Packit Service f5a052
Packit Service f5a052
#ifndef __statx_timestamp_defined
Packit Service f5a052
#define __statx_timestamp_defined 1
Packit Service f5a052
Packit Service f5a052
struct statx_timestamp
Packit Service f5a052
{
Packit Service f5a052
  __int64_t tv_sec;
Packit Service f5a052
  __uint32_t tv_nsec;
Packit Service f5a052
  __int32_t __statx_timestamp_pad1[1];
Packit Service f5a052
};
Packit Service f5a052
Packit Service f5a052
#endif /* __statx_timestamp_defined */