~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to system/include/stdbool.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef __stdbool_h__
 
3
#define __stdbool_h__
 
4
 
 
5
#define __bool_true_false_are_defined 1
 
6
 
 
7
#ifndef __cplusplus
 
8
 
 
9
#define bool                          _Bool
 
10
#define true                          1
 
11
#define false                         0
 
12
 
 
13
#endif
 
14
 
 
15
#endif
 
16