1 /** @file
2 
3   Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
4   This program and the accompanying materials are licensed and made available under
5   the terms and conditions of the BSD License that accompanies this distribution.
6   The full text of the license may be found at
7   http://opensource.org/licenses/bsd-license.
8 
9   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 
12  * Copyright (c) 1990, 1993
13  *  The Regents of the University of California.  All rights reserved.
14  *
15  * Redistribution and use in source and binary forms, with or without
16  * modification, are permitted provided that the following conditions
17  * are met:
18  * 1. Redistributions of source code must retain the above copyright
19  *    notice, this list of conditions and the following disclaimer.
20  * 2. Redistributions in binary form must reproduce the above copyright
21  *    notice, this list of conditions and the following disclaimer in the
22  *    documentation and/or other materials provided with the distribution.
23  * 3. Neither the name of the University nor the names of its contributors
24  *    may be used to endorse or promote products derived from this software
25  *    without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37  * SUCH DAMAGE.
38  *
39  *  @(#)utime.h 8.1 (Berkeley) 6/2/93
40     NetBSD: utime.h,v 1.8 2005/02/03 04:39:32 perry Exp
41  */
42 
43 #ifndef _UTIME_H_
44 #define _UTIME_H_
45 
46 #include <sys/cdefs.h>
47 #include <machine/ansi.h>
48 #include  <sys/time.h>
49 
50 #if   defined(_BSD_TIME_T_) && defined(_EFI_TIME_T)
51 typedef _EFI_TIME_T     time_t;
52 #undef  _BSD_TIME_T_
53 #undef  _EFI_TIME_T
54 #endif
55 
56 struct utimbuf {
57   time_t actime;    /* Access time */
58   time_t modtime;   /* Modification time */
59 };
60 
61 __BEGIN_DECLS
62   int utime   (const char *path, const struct utimbuf *times);
63   int utimes  (const char *path, const struct timeval *times);
64 __END_DECLS
65 
66 #endif /* !_UTIME_H_ */
67