ibcs2_utime.h revision 11395
178344Sobrien/*
278344Sobrien * Copyright (c) 1995 Scott Bartram
398184Sgordon * All rights reserved.
478344Sobrien *
578344Sobrien * Redistribution and use in source and binary forms, with or without
678344Sobrien * modification, are permitted provided that the following conditions
7240336Sobrien * are met:
898184Sgordon * 1. Redistributions of source code must retain the above copyright
9136224Smtm *    notice, this list of conditions and the following disclaimer.
1078344Sobrien * 2. Redistributions in binary form must reproduce the above copyright
1178344Sobrien *    notice, this list of conditions and the following disclaimer in the
1278344Sobrien *    documentation and/or other materials provided with the distribution.
1378344Sobrien * 3. All advertising materials mentioning features or use of this software
14230099Sdougb *    must display the following acknowledgement:
15151809Syar *      This product includes software developed by Scott Bartram.
16124618Smtm * 4. The name of the author may not be used to endorse or promote products
1778344Sobrien *    derived from this software without specific prior written permission
1898184Sgordon *
1998184Sgordon * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20113959Smtm * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21113959Smtm * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22113959Smtm * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23210734Sjilles * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24113959Smtm * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25113959Smtm * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26255450Scy * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27113959Smtm * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28104980Sschweikh * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2998184Sgordon */
3098184Sgordon
3198184Sgordon#ifndef	_IBCS2_UTIME_H
3278344Sobrien#define	_IBCS2_UTIME_H
3378344Sobrien
34#include <compat/ibcs2/ibcs2_types.h>
35
36struct ibcs2_utimbuf {
37        ibcs2_time_t actime;
38	ibcs2_time_t modtime;
39};
40
41#endif /* _IBCS2_UTIME_H */
42