1139799Simp/*-
211394Sswallace * Copyright (c) 1995 Scott Bartram
311394Sswallace * All rights reserved.
411394Sswallace *
511394Sswallace * Redistribution and use in source and binary forms, with or without
611394Sswallace * modification, are permitted provided that the following conditions
711394Sswallace * are met:
811394Sswallace * 1. Redistributions of source code must retain the above copyright
911394Sswallace *    notice, this list of conditions and the following disclaimer.
1011394Sswallace * 2. Redistributions in binary form must reproduce the above copyright
1111394Sswallace *    notice, this list of conditions and the following disclaimer in the
1211394Sswallace *    documentation and/or other materials provided with the distribution.
1311394Sswallace * 3. All advertising materials mentioning features or use of this software
1411394Sswallace *    must display the following acknowledgement:
1511394Sswallace *      This product includes software developed by Scott Bartram.
1611394Sswallace * 4. The name of the author may not be used to endorse or promote products
1711394Sswallace *    derived from this software without specific prior written permission
1811394Sswallace *
1911394Sswallace * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
2011394Sswallace * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
2111394Sswallace * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2211394Sswallace * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2311394Sswallace * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2411394Sswallace * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2511394Sswallace * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2611394Sswallace * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2711394Sswallace * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2811394Sswallace * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29139799Simp *
30139799Simp * $FreeBSD$
3111394Sswallace */
3211394Sswallace
3311394Sswallace#ifndef	_IBCS2_UTIME_H
3411394Sswallace#define	_IBCS2_UTIME_H
3511394Sswallace
3611397Sswallace#include <i386/ibcs2/ibcs2_types.h>
3711394Sswallace
3811394Sswallacestruct ibcs2_utimbuf {
3911394Sswallace        ibcs2_time_t actime;
4011394Sswallace	ibcs2_time_t modtime;
4111394Sswallace};
4211394Sswallace
4311394Sswallace#endif /* _IBCS2_UTIME_H */
44