summaryrefslogtreecommitdiff
path: root/src/libstddjb/touch.c
blob: dfc3525bce3ff8c5346c7f21c2494cd9d413c939 (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
/* ISC license. */

#include <skalibs/sysdeps.h>
#include <skalibs/djbunix.h>

#ifdef SKALIBS_HASFUTIMENS

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

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

#else
#ifdef SKALIBS_HASFUTIMES

#include <sys/time.h>

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

#else

#include <sys/time.h>

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

#endif
#endif