summaryrefslogtreecommitdiff
path: root/src/sysdeps/tryfutimens.c
blob: 0c4b2afc4d436d78e4e4dcb768db15830d25ed29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* ISC license. */

#undef _POSIX_C_SOURCE
#undef _XOPEN_SOURCE
#ifndef __EXTENSIONS__
#define __EXTENSIONS__
#endif

int main (void)
{
  struct timespec foo[2] = { { .tv_sec = 0, .tv_nsec = 0 }, { .tv_sec = 0, .tv_nsec = 0 } } ;
  futimens(0, foo) ;
  return 0 ;
}