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.
35 # define _unused __attribute__((unused))
40 /* Some versions of MSVC have these only with underscores in front */
42 #if !defined(HAVE_SNPRINTF) && defined(HAVE__SNPRINTF)
43 # define snprintf _snprintf
46 #if !defined(HAVE_VSNPRINTF) && defined(HAVE__VSNPRINTF)
47 # define vsnprintf _vsnprintf
50 #endif /* COMPILER_H */