xref: /aosp_15_r20/external/ltp/include/lapi/utime.h (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
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 LAPI_UTIME_H__
7 #define LAPI_UTIME_H__
8 
9 #ifndef UTIME_NOW
10 # define UTIME_NOW ((1l << 30) - 1l)
11 #endif
12 
13 #ifndef UTIME_OMIT
14 # define UTIME_OMIT ((1l << 30) - 2l)
15 #endif
16 
17 #endif /* LAPI_UTIME_H__ */
18