]> Pileus Git - ~andy/gtk/blob - gtk/fallback-c89.c
styleproperties: Add a hacky function to redirect color lookups
[~andy/gtk] / gtk / fallback-c89.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 2011 Chun-wei Fan <fanc999@yahoo.com.tw>
3  *
4  * Author: Chun-wei Fan <fanc999@yahoo.com.tw>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #include <math.h>
23  
24 /* Workaround for round() for non-GCC/non-C99 compilers */
25 #ifndef HAVE_ROUND
26 static inline double
27 round (double x)
28 {
29   if (x >= 0)
30     return floor (x + 0.5);
31   else
32     return ceil (x - 0.5);
33 }
34 #endif
35
36 /* Workaround for rint() for non-GCC/non-C99 compilers */
37 #ifndef HAVE_RINT
38 static inline double
39 rint (double x)
40 {
41   if (ceil (x + 0.5) == floor (x + 0.5))
42   {
43     int a;
44     a = (int) ceil (x);
45     if (a % 2 == 0)
46       return ceil (x);
47     else
48       return floor (x);
49   }
50   else
51   {
52     if (x >= 0)
53       return floor (x + 0.5);
54     else
55       return ceil (x - 0.5);
56   }
57 }
58 #endif