summaryrefslogtreecommitdiff
path: root/common/pixman_utils.c
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2010-03-09 11:10:00 +0100
committerAlexander Larsson <alexl@redhat.com>2010-03-09 11:10:00 +0100
commit90c5766caf16e35cb871116a4655a106a3c272dc (patch)
treeddc2ea976240a3f8f9c3294b41492256e6eb3f82 /common/pixman_utils.c
parent5cb99e12c6817592f49ca153a3081dd6b5995cf2 (diff)
Use macros from <spice/macros.h> rather than duplicate them
Diffstat (limited to 'common/pixman_utils.c')
-rw-r--r--common/pixman_utils.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/common/pixman_utils.c b/common/pixman_utils.c
index 7aff30b4..05ac03d7 100644
--- a/common/pixman_utils.c
+++ b/common/pixman_utils.c
@@ -17,19 +17,12 @@
*/
#include "pixman_utils.h"
+#include <spice/macros.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
-#ifndef FALSE
-# define FALSE 0
-#endif
-
-#ifndef TRUE
-# define TRUE 1
-#endif
-
#ifndef ASSERT
#define ASSERT(x) if (!(x)) { \
printf("%s: ASSERT %s failed\n", __FUNCTION__, #x); \