# HG changeset patch # User Benoit Boissinot # Date 2006-10-27 08:24:19 # Node ID 8c617d48564a595efd15f486597210d25e0b3e32 # Parent 6106236bc4eb4a5b2f3ad268136682b2e0cad175 add AIX to the list of compilers that don't have inline keyword diff --git a/mercurial/bdiff.c b/mercurial/bdiff.c --- a/mercurial/bdiff.c +++ b/mercurial/bdiff.c @@ -13,11 +13,7 @@ #include #include -#ifdef __hpux -#define inline -#endif - -#ifdef __SUNPRO_C +#if defined __hpux || defined __SUNPRO_C || defined _AIX # define inline #endif