0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-09-22 10:43:39 -04:00

Merge branch 'nasm-2.12.xx'

* nasm-2.12.xx:
  codeview: Fix ill-formed "S_COMPILE2" record.
  rdoff: Add rdf2bin input dependency
  labels: Warn if new label created on pass two
  Add explicit void parameter to newmembuf() function declaration.
  compiler.h: always undefine __STRICT_ANSI__ for gcc

| Conflicts:
|	rdoff/Makefile.in

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov
2016-07-27 01:08:51 +03:00
3 changed files with 24 additions and 12 deletions

View File

@@ -43,8 +43,11 @@
#ifndef NASM_COMPILER_H
#define NASM_COMPILER_H 1
#ifdef __DJGPP__
/* DJGPP has header file problems if __STRICT_ANSI__ is defined */
/*
* At least DJGPP and Cygwin have broken header files if __STRICT_ANSI__
* is defined.
*/
#ifdef __GNUC__
# undef __STRICT_ANSI__
#endif