xref: /third_party/ltp/include/lapi/utime.h (revision f08c3bdf)
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