fix
[libfirm] / ir / ana2 / timing.h
1 /* -*- c -*- */
2
3 /*
4  * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
5  *
6  * This file is part of libFirm.
7  *
8  * This file may be distributed and/or modified under the terms of the
9  * GNU General Public License version 2 as published by the Free Software
10  * Foundation and appearing in the file LICENSE.GPL included in the
11  * packaging of this file.
12  *
13  * Licensees holding valid libFirm Professional Edition licenses may use
14  * this file in accordance with the libFirm Commercial License.
15  * Agreement provided with the Software.
16  *
17  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
18  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19  * PURPOSE.
20  */
21
22 /**
23  * @file
24  * @brief    generic timing routines
25  * @author   Florian
26  * @date     Mon 18 Oct 2004
27  * @version  $Id$
28  */
29 #ifndef FIRM_ANA2_TIMING_H
30 #define FIRM_ANA2_TIMING_H
31
32 /*
33    Data structures
34  */
35 typedef struct timing_env timing_t;
36
37 /*
38   Protos
39 */
40 timing_t *start_timing (void);
41 int       end_timing   (timing_t*);
42
43 #endif
44
45 \f
46 /*
47   $Log$
48   Revision 1.2  2004/12/21 15:52:23  beck
49   moved struct timing_env to .c file, added config.h
50
51   Revision 1.1  2004/10/29 18:55:52  liekweg
52   (mostly) generic timimg
53
54
55 */