Different BOOL definitions problem

From: Sergei Gnezdov (use-reply-to_at_gnezdov.net)
Date: 03/30/05


Date: 30 Mar 2005 07:05:45 GMT

I am using two different libraries. One defines BOOL as
  
  typedef char BOOL; (neo_misc.h)

and another uses:
   
   typedef unsigned char BOOL; (objc.h)

How do I solve the problem? How do you solve problems like this
without namespaces?