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
37 # define _unused __attribute__((unused))
42 /* Some versions of MSVC have these only with underscores in front */
48 # ifdef HAVE__SNPRINTF
49 # define snprintf _snprintf
51 int snprintf(char *, size_t, const char *, ...);
55 #ifndef HAVE_VSNPRINTF
56 # ifdef HAVE__VSNPRINT
57 # define vsnprintf _vsnprintf
59 int vsnprintf(char *, size_t, const char *, va_list);
63 #ifndef __cplusplus /* C++ has false, true, bool as keywords */
64 # ifdef HAVE_STDBOOL_H
67 typedef enum { false, true } bool;
71 #endif /* NASM_COMPILER_H */