timers.h revision 50477
113549Sjulian/*
213549Sjulian * Copyright (c) 1994 by Chris Provenzano, proven@mit.edu
313549Sjulian * All rights reserved.
413549Sjulian *
513549Sjulian * Redistribution and use in source and binary forms, with or without
613549Sjulian * modification, are permitted provided that the following conditions
713549Sjulian * are met:
813549Sjulian * 1. Redistributions of source code must retain the above copyright
913549Sjulian *    notice, this list of conditions and the following disclaimer.
1013549Sjulian * 2. Redistributions in binary form must reproduce the above copyright
1113549Sjulian *    notice, this list of conditions and the following disclaimer in the
1213549Sjulian *    documentation and/or other materials provided with the distribution.
1313549Sjulian * 3. All advertising materials mentioning features or use of this software
1413549Sjulian *    must display the following acknowledgement:
1513549Sjulian *  This product includes software developed by Chris Provenzano.
1613549Sjulian * 4. The name of Chris Provenzano may not be used to endorse or promote
1713549Sjulian *    products derived from this software without specific prior written
1813549Sjulian *    permission.
1913549Sjulian *
2013549Sjulian * THIS SOFTWARE IS PROVIDED BY CHRIS PROVENZANO ``AS IS'' AND
2113549Sjulian * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2213549Sjulian * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2313549Sjulian * ARE DISCLAIMED.  IN NO EVENT SHALL CHRIS PROVENZANO BE LIABLE FOR ANY
2413549Sjulian * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2513549Sjulian * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
2613549Sjulian * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
2713549Sjulian * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2813549Sjulian * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2913549Sjulian * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3013549Sjulian * SUCH DAMAGE.
3113549Sjulian *
3250477Speter * $FreeBSD: head/sys/sys/timers.h 50477 1999-08-28 01:08:13Z peter $
3313549Sjulian *
3413549Sjulian * Description : Basic timers header.
3513549Sjulian */
3613549Sjulian
3713549Sjulian#ifndef _SYS_TIMERS_H_
3813549Sjulian#define _SYS_TIMERS_H_
3913549Sjulian
4013549Sjulian#include <sys/time.h>
4113549Sjulian
4213549Sjulian#endif
43