1 /* ----------------------------------------------------------------------- *
3 * Copyright 2007 The NASM Authors - All Rights Reserved
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the license given in the file "License"
7 * distributed in the NASM archive.
9 * ----------------------------------------------------------------------- */
14 * Compiler-specific macros for NASM. Feel free to add support for
15 * other compilers in here.
17 * This header file should be included before any other header.
20 #ifndef NASM_COMPILER_H
21 #define NASM_COMPILER_H 1
27 /* This is required to get the standard <inttypes.h> macros when compiling
28 with a C++ compiler. This must be defined *before* <inttypes.h> is
29 included, directly or indirectly. */
30 #define __STDC_CONSTANT_MACROS 1
31 #define __STDC_LIMIT_MACROS 1
32 #define __STDC_FORMAT_MACROS 1
44 # define _unused __attribute__((unused))
49 /* Some versions of MSVC have these only with underscores in front */
55 # ifdef HAVE__SNPRINTF
56 # define snprintf _snprintf
58 int snprintf(char *, size_t, const char *, ...);
62 #ifndef HAVE_VSNPRINTF
63 # ifdef HAVE__VSNPRINT
64 # define vsnprintf _vsnprintf
66 int vsnprintf(char *, size_t, const char *, va_list);
70 #ifndef __cplusplus /* C++ has false, true, bool as keywords */
71 # ifdef HAVE_STDBOOL_H
74 typedef enum { false, true } bool;
78 #endif /* NASM_COMPILER_H */