xref: /aosp_15_r20/external/ltp/include/lapi/utime.h (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
1*49cdfc7eSAndroid Build Coastguard Worker // SPDX-License-Identifier: GPL-2.0-or-later
2*49cdfc7eSAndroid Build Coastguard Worker /*
3*49cdfc7eSAndroid Build Coastguard Worker  * Copyright (c) 2013 Oracle and/or its affiliates. All Rights Reserved.
4*49cdfc7eSAndroid Build Coastguard Worker  */
5*49cdfc7eSAndroid Build Coastguard Worker 
6*49cdfc7eSAndroid Build Coastguard Worker #ifndef LAPI_UTIME_H__
7*49cdfc7eSAndroid Build Coastguard Worker #define LAPI_UTIME_H__
8*49cdfc7eSAndroid Build Coastguard Worker 
9*49cdfc7eSAndroid Build Coastguard Worker #ifndef UTIME_NOW
10*49cdfc7eSAndroid Build Coastguard Worker # define UTIME_NOW ((1l << 30) - 1l)
11*49cdfc7eSAndroid Build Coastguard Worker #endif
12*49cdfc7eSAndroid Build Coastguard Worker 
13*49cdfc7eSAndroid Build Coastguard Worker #ifndef UTIME_OMIT
14*49cdfc7eSAndroid Build Coastguard Worker # define UTIME_OMIT ((1l << 30) - 2l)
15*49cdfc7eSAndroid Build Coastguard Worker #endif
16*49cdfc7eSAndroid Build Coastguard Worker 
17*49cdfc7eSAndroid Build Coastguard Worker #endif /* LAPI_UTIME_H__ */
18