ibcs2_utime.h revision 11394
178344Sobrien/*
278344Sobrien * Copyright (c) 1995 Scott Bartram
378344Sobrien * 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
778344Sobrien * are met:
878344Sobrien * 1. Redistributions of source code must retain the above copyright
978344Sobrien *    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
1478344Sobrien *    must display the following acknowledgement:
1578344Sobrien *      This product includes software developed by Scott Bartram.
1678344Sobrien * 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
1878344Sobrien *
1978344Sobrien * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
2078344Sobrien * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
2178344Sobrien * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2278344Sobrien * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2378344Sobrien * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2478344Sobrien * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2578344Sobrien * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2678344Sobrien * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2778344Sobrien * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2878344Sobrien * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2978344Sobrien */
3078344Sobrien
3178344Sobrien#ifndef	_IBCS2_UTIME_H
3278344Sobrien#define	_IBCS2_UTIME_H
3378344Sobrien
3478344Sobrien#include <compat/ibcs2/ibcs2_types.h>
3578344Sobrien
3678344Sobrienstruct ibcs2_utimbuf {
3778344Sobrien        ibcs2_time_t actime;
3878344Sobrien	ibcs2_time_t modtime;
3978344Sobrien};
4078344Sobrien
4178344Sobrien#endif /* _IBCS2_UTIME_H */
4278344Sobrien