~ubuntu-branches/ubuntu/lucid/cmake/lucid

« back to all changes in this revision

Viewing changes to Utilities/cmxmlrpc/bool.h

  • Committer: Bazaar Package Importer
  • Author(s): Artur Rona
  • Date: 2009-12-16 11:11:54 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20091216111154-6accvv6yq86h2hkc
Tags: 2.8.0-5ubuntu1
* Merge from debian testing (LP: #497349). Remaining changes:
  - Keep the Replaces: on cmake-data to cover the Kubuntu version from
    Jaunty in case someone decides to do an (unsupported) Jaunty->Lucid
    upgrade.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef BOOL_H_INCLUDED
2
 
#define BOOL_H_INCLUDED
3
 
 
4
 
#ifndef TRUE
5
 
#define TRUE (1)
6
 
#endif
7
 
#ifndef FALSE
8
 
#define FALSE (0)
9
 
#endif
10
 
 
11
 
#ifndef __cplusplus
12
 
#ifndef HAVE_BOOL
13
 
#define HAVE_BOOL
14
 
typedef int bool;
15
 
#endif
16
 
#endif
17
 
 
18
 
#endif