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

#ifndef _BSD_SOURCE
#define _BSD_SOURCE
#endif

#include <sys/types.h>
#include <sys/time.h>

int main (void)
{
  struct timeval foo[2] = { { .tv_sec = 0, .tv_usec = 0 }, { .tv_sec = 0, .tv_usec = 0 } } ;
  futimes(0, foo) ;
  return 0 ;
}