compiler.h: add missing new #include "autoconf/attributes.h"

The attributes macro is contained in a header file; this header file
needs to be included.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin 2023-10-11 12:06:18 -07:00
parent 0e96487608
commit 816f50e5f5

View File

@ -1,6 +1,6 @@
/* ----------------------------------------------------------------------- *
*
* Copyright 2007-2020 The NASM Authors - All Rights Reserved
* Copyright 2007-2023 The NASM Authors - All Rights Reserved
* See the file AUTHORS included with the NASM distribution for
* the specific copyright holders.
*
@ -54,6 +54,8 @@
/* On Microsoft platforms we support multibyte character sets in filenames */
#define _MBCS 1
#include "autoconf/attribute.h"
#ifdef HAVE_CONFIG_H
# include "config/config.h"
#else