exclude vis.h when compiling assembly files

otherwise C declarations are included into preprocessed (.S) asm
source files, producing errors from the assembler.
This commit is contained in:
Khem Raj 2016-01-20 10:14:15 -08:00 committed by Rich Felker
parent 4fcc7eb51c
commit d1b29c2a54
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
* override default visibilities to reduce the size and performance costs
* of position-independent code. */
#ifndef CRT
#if !defined(CRT) && !defined(__ASSEMBLER__)
/* Conceptually, all symbols should be protected, but some toolchains
* fail to support copy relocations for protected data, so exclude all