(root)/
strace-6.5/
tests-mx32/
kernel_old_timespec.h
       1  /*
       2   * Copyright (c) 2019-2021 Dmitry V. Levin <ldv@strace.io>
       3   * All rights reserved.
       4   *
       5   * SPDX-License-Identifier: GPL-2.0-or-later
       6   */
       7  
       8  #ifndef STRACE_KERNEL_OLD_TIMESPEC_H
       9  # define STRACE_KERNEL_OLD_TIMESPEC_H
      10  
      11  typedef struct {
      12  # if SIZEOF_KERNEL_LONG_T == 4 || defined LINUX_MIPSN32
      13  	int
      14  # else
      15  	long long
      16  # endif
      17  	tv_sec, tv_nsec;
      18  } kernel_old_timespec_t;
      19  
      20  #endif /* !STRACE_KERNEL_OLD_TIMESPEC_H */