blob: c4419ecb1724cf5cffa751f5c75ed57cb03a85a0 (
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
54
55
56
|
/* ISC license. */
#include <skalibs/sysdeps.h>
#ifdef SKALIBS_HASFUTIMENS
#include <skalibs/nonposix.h>
#include <time.h>
#include <sys/stat.h>
#include <skalibs/djbunix.h>
#include <skalibs/posixplz.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>
#include <skalibs/posixplz.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 r ;
}
#else
#include <sys/time.h>
#include <skalibs/djbunix.h>
#include <skalibs/posixplz.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
|