Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add the trace library and fixed a few source of potential bugs in heap.
[simgrid.git] / include / xbt.h
1 /* $Id$ */
2
3 /* xbt.h - Public interface to the xbt (gras's toolbox)                   */
4
5 /* Authors: Martin Quinson                                                  */
6 /* Copyright (C) 2004 the OURAGAN project.                                  */
7
8 /* This program is free software; you can redistribute it and/or modify it
9    under the terms of the license (GNU LGPL) which comes with this package. */
10
11 #ifndef xbt_H
12 #define xbt_H
13
14 #define max(a, b) (((a) > (b))?(a):(b))
15 #define min(a, b) (((a) < (b))?(a):(b))
16
17 #define TRUE  1
18 #define FALSE 0
19
20 #define XBT_MAX_CHANNEL 10 /* FIXME: killme */
21
22 #include <xbt/sysdep.h>
23
24 #include <xbt/error.h>
25 #include <xbt/log.h>
26
27 #include <xbt/module.h>
28
29 #include <xbt/dynar.h>
30 #include <xbt/dict.h>
31 #include <xbt/set.h>
32
33 #include <xbt/config.h>
34
35 #endif /* xbt_H */