From b224716f3308907da1435b8302a66821d7f91dff Mon Sep 17 00:00:00 2001 From: =?utf8?q?poljar=20=28Damir=20Jeli=C4=87=29?= Date: Fri, 28 Jun 2013 12:55:27 +0200 Subject: [PATCH] macro: Remove unneeded typedef for pa_bool_t. --- src/pulsecore/macro.h | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/pulsecore/macro.h b/src/pulsecore/macro.h index 39d6a98..4d5e80f 100644 --- a/src/pulsecore/macro.h +++ b/src/pulsecore/macro.h @@ -177,21 +177,6 @@ static inline size_t PA_PAGE_ALIGN(size_t l) { #define PA_CLIP_SUB(a, b) ((a) > (b) ? (a) - (b) : 0) #endif -/* This type is not intended to be used in exported APIs! Use classic "int" there! */ -#ifdef HAVE_STD_BOOL -typedef bool pa_bool_t; -#else -typedef int pa_bool_t; -#endif - -#ifndef FALSE -#define FALSE ((pa_bool_t) 0) -#endif - -#ifndef TRUE -#define TRUE (!FALSE) -#endif - #ifdef __GNUC__ #define PA_PRETTY_FUNCTION __PRETTY_FUNCTION__ #else -- 2.7.4