~ubuntu-branches/ubuntu/trusty/slof/trusty

« back to all changes in this revision

Viewing changes to lib/libc/include/stdbool.h

  • Committer: Package Import Robot
  • Author(s): Logan Rosen
  • Date: 2013-12-11 00:00:46 UTC
  • mfrom: (2.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20131211000046-1199k14mvmd37ts6
Tags: 20131015+dfsg-1ubuntu1
* Merge from Debian unstable. Remaining changes:
  - Since Ubuntu always builds Architecture: all packages on i386, build
    using a cross-compiler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************************************************
 
2
 * Copyright (c) 2013 IBM Corporation
 
3
 * All rights reserved.
 
4
 * This program and the accompanying materials
 
5
 * are made available under the terms of the BSD License
 
6
 * which accompanies this distribution, and is available at
 
7
 * http://www.opensource.org/licenses/bsd-license.php
 
8
 *
 
9
 * Contributors:
 
10
 *     IBM Corporation - initial implementation
 
11
 *****************************************************************************/
 
12
 
 
13
#ifndef _STDBOOL_H
 
14
#define _STDBOOL_H
 
15
 
 
16
#ifndef __cplusplus
 
17
typedef enum { false = 0, true } bool;
 
18
#endif
 
19
 
 
20
#endif