~ubuntu-branches/ubuntu/raring/avr-libc/raring-proposed

« back to all changes in this revision

Viewing changes to include/stdint.h

  • Committer: Package Import Robot
  • Author(s): Hakan Ardo
  • Date: 2012-05-23 10:30:07 UTC
  • mfrom: (1.1.11) (4.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20120523103007-h7u5fhm6n13wds9e
Tags: 1:1.8.0-2
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31
31
  POSSIBILITY OF SUCH DAMAGE. */
32
32
 
33
 
/* $Id: stdint.h 1196 2007-01-23 15:34:58Z joerg_wunsch $ */
 
33
/* $Id: stdint.h 2261 2011-12-09 07:05:46Z joerg_wunsch $ */
34
34
 
35
35
/*
36
36
 * ISO/IEC 9899:1999  7.18 Integer types <stdint.h>
118
118
 
119
119
/* actual implementation goes here */
120
120
 
121
 
typedef int int8_t __attribute__((__mode__(__QI__)));
 
121
typedef signed int int8_t __attribute__((__mode__(__QI__)));
122
122
typedef unsigned int uint8_t __attribute__((__mode__(__QI__)));
123
 
typedef int int16_t __attribute__ ((__mode__ (__HI__)));
 
123
typedef signed int int16_t __attribute__ ((__mode__ (__HI__)));
124
124
typedef unsigned int uint16_t __attribute__ ((__mode__ (__HI__)));
125
 
typedef int int32_t __attribute__ ((__mode__ (__SI__)));
 
125
typedef signed int int32_t __attribute__ ((__mode__ (__SI__)));
126
126
typedef unsigned int uint32_t __attribute__ ((__mode__ (__SI__)));
127
127
#if !__USING_MINT8
128
 
typedef int int64_t __attribute__((__mode__(__DI__)));
 
128
typedef signed int int64_t __attribute__((__mode__(__DI__)));
129
129
typedef unsigned int uint64_t __attribute__((__mode__(__DI__)));
130
130
#endif
131
131