• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2013 Oracle and/or its affiliates. All Rights Reserved.
4  */
5 
6 #ifndef __UTIME_H__
7 
8 #ifndef UTIME_NOW
9 # define UTIME_NOW ((1l << 30) - 1l)
10 #endif
11 
12 #ifndef UTIME_OMIT
13 # define UTIME_OMIT ((1l << 30) - 2l)
14 #endif
15 
16 #endif /* __UTIME_H__ */
17