17 lines
570 B
C
17 lines
570 B
C
/*
|
|
* Copyright (c) 2007, 2008, 2009, ETH Zurich.
|
|
* All rights reserved.
|
|
*
|
|
* This file is distributed under the terms in the attached LICENSE file.
|
|
* If you do not find this file, copies can be found by writing to:
|
|
* ETH Zurich D-INFK, Universitaetstrasse 6, CH-8092 Zurich. Attn: Systems Group.
|
|
*/
|
|
|
|
#ifndef BARRELFISH_VALUES_H_
|
|
#define BARRELFISH_VALUES_H_
|
|
|
|
#define MAXDOUBLE ((double)1.79769313486231570814527423731704356798070567525845E+308)
|
|
#define MINDOUBLE ((double)6.95331305615562028904064189555652728295425576497497e-310)
|
|
|
|
#endif // BARRELFISH_VALUES_H_
|