~ubuntu-branches/ubuntu/oneiric/tcc/oneiric

« back to all changes in this revision

Viewing changes to win32/include/stddef.h

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Preud'homme, Aurélien GÉRÔME, Thomas Preud'homme
  • Date: 2008-06-16 03:31:38 UTC
  • mfrom: (1.1.4 upstream) (3.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080616033138-hqo92o7adc6nn9fa
Tags: 0.9.24-1
[ Aurélien GÉRÔME ]
* Change my email address in the Maintainer field.
* Bump Standards-Version to 3.8.0.
* Remove no longer used XS-Vcs-Git and XS-Vcs-Browser fields.
* Add the DM-Upload-Allowed field for Arthur.

[ Thomas Preud'homme ]
* New Upstream Version
  - tcc now supports typename as structure field name (closes: #278698)
  - A long long value used as a test expression ignores the
    upper 32 bits at runtime (closes: #304082)
* Remove unecessary patches:
  - 352202_fix_int_overflow.diff
  - 283066_add_va_copy_define.diff (already disabled)
  - 430209_fix_bound_check_error.diff
* Clean all patches (no fuzz or offset problem anymore)
* Add patch from Bradley Smith to allow compilation with gcc 4.3
  (closes: #474883)
* Add tcc-doc_texi_formatting.diff to correct formatting of tcc-doc.texi

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
   __GNUC__ ? */
13
13
#if !defined(__int8_t_defined) && !defined(__dietlibc__)
14
14
#define __int8_t_defined
15
 
typedef char int8_t;
16
 
typedef short int int16_t;
17
 
typedef int int32_t;
 
15
typedef char int8_t;
 
16
typedef short int int16_t;
 
17
typedef int int32_t;
18
18
typedef long long int int64_t;
19
19
#endif
20
20
 
 
21
#ifdef __i386__
 
22
void *_alloca(size_t);
 
23
#define alloca _alloca
 
24
#endif
 
25
 
21
26
#endif