summaryrefslogtreecommitdiff
path: root/src/libstddjb/touch.c
blob: f71a983a083ea7bcca14e947140157c7b61569aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* ISC license. */

#include <skalibs/sysdeps.h>

#ifdef SKALIBS_HASFUTIMENS

#include <skalibs/nonposix.h>
#include <time.h>
#include <sys/stat.h>
#include <skalibs/djbunix.h>

int touch (char const *file)
{
  int r ;
  int fd = open_create(file) ;
  if (fd < 0) return 0 ;
  r = futimens(fd, 0) >= 0 ;
  fd_close(fd) ;
  return r ;
}

#else
#ifdef SKALIBS_HASFUTIMES

#include <skalibs/nonposix.h>
#include <sys/time.h>
#include <skalibs/djbunix.h>

int touch (char const *file)
{
  int r ;
  int fd = open_create(file) ;
  if (fd < 0) return 0 ;
  r = futimes(fd, 0) >= 0 ;
  fd_close(fd) ;
  return 1 ;
}

#else

#include <sys/time.h>
#include <skalibs/djbunix.h>

int touch (char const *file)
{
  int fd = open_create(file) ;
  if (fd < 0) return 0 ;
  fd_close(fd) ;
  return utimes(file, 0) >= 0 ;
}

#endif
#endif