~ubuntu-branches/ubuntu/wily/musl/wily

« back to all changes in this revision

Viewing changes to arch/sh/bits/stdint.h

  • Committer: Package Import Robot
  • Author(s): Kevin Bortis
  • Date: 2014-03-22 09:39:56 UTC
  • mfrom: (4.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140322093956-1oc4xt9b2n3domo7
Tags: 1.0.0-1
* Import upstream version 1.0.0
* Provide musl-ldd (Closes: #732169)
* Arch independent ld-musl-config (Closes: #739205)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
typedef int32_t int_fast16_t;
 
2
typedef int32_t int_fast32_t;
 
3
typedef uint32_t uint_fast16_t;
 
4
typedef uint32_t uint_fast32_t;
 
5
 
 
6
#define INT_FAST16_MIN  INT32_MIN
 
7
#define INT_FAST32_MIN  INT32_MIN
 
8
 
 
9
#define INT_FAST16_MAX  INT32_MAX
 
10
#define INT_FAST32_MAX  INT32_MAX
 
11
 
 
12
#define UINT_FAST16_MAX UINT32_MAX
 
13
#define UINT_FAST32_MAX UINT32_MAX
 
14
 
 
15
#define INTPTR_MIN      INT32_MIN
 
16
#define INTPTR_MAX      INT32_MAX
 
17
#define UINTPTR_MAX     UINT32_MAX
 
18
#define PTRDIFF_MIN     INT32_MIN
 
19
#define PTRDIFF_MAX     INT32_MAX
 
20
#define SIZE_MAX        UINT32_MAX