~ubuntu-branches/ubuntu/trusty/musl/trusty-proposed

« back to all changes in this revision

Viewing changes to arch/x86_64/bits/alltypes.h.in

  • Committer: Package Import Robot
  • Author(s): Kevin Bortis
  • Date: 2013-09-20 20:54:14 UTC
  • Revision ID: package-import@ubuntu.com-20130920205414-5b61trtmma18w58o
Tags: upstream-0.9.13
ImportĀ upstreamĀ versionĀ 0.9.13

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#define _Addr long
 
2
#define _Int64 long
 
3
#define _Reg long
 
4
 
 
5
TYPEDEF __builtin_va_list va_list;
 
6
TYPEDEF __builtin_va_list __isoc_va_list;
 
7
 
 
8
#ifndef __cplusplus
 
9
TYPEDEF int wchar_t;
 
10
#endif
 
11
TYPEDEF unsigned wint_t;
 
12
 
 
13
#if defined(__FLT_EVAL_METHOD__) && __FLT_EVAL_METHOD__ == 2
 
14
TYPEDEF long double float_t;
 
15
TYPEDEF long double double_t;
 
16
#else
 
17
TYPEDEF float float_t;
 
18
TYPEDEF double double_t;
 
19
#endif
 
20
 
 
21
TYPEDEF long time_t;
 
22
TYPEDEF long suseconds_t;
 
23
 
 
24
TYPEDEF struct { union { int __i[14]; unsigned long __s[7]; } __u; } pthread_attr_t;
 
25
TYPEDEF struct { union { int __i[10]; void *__p[5]; } __u; } pthread_mutex_t;
 
26
TYPEDEF struct { union { int __i[12]; void *__p[6]; } __u; } pthread_cond_t;
 
27
TYPEDEF struct { union { int __i[14]; void *__p[7]; } __u; } pthread_rwlock_t;
 
28
TYPEDEF struct { union { int __i[8]; void *__p[4]; } __u; } pthread_barrier_t;