~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/drizzle.h

  • Committer: Brian Aker
  • Date: 2011-02-24 07:11:33 UTC
  • mfrom: (2197.1.5 drizzle-build)
  • Revision ID: brian@tangent.org-20110224071133-kj27247l6bqikdtp
Rollup of all current patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
#if defined(__GNUC__)
75
75
# include <stdbool.h>
76
76
#else
 
77
# if !defined(__cplusplus)
77
78
typedef enum { false = 0, true = 1 } _Bool;
78
79
typedef _Bool bool;
 
80
#endif 
79
81
#endif
80
82
 
81
83
#else