mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-02-20 18:42:34 +00:00
Include config.h and use #ifdef HAVE_SYM_PREFIX_UNDERSCORE instead of bogus #ifdef ELF
This commit is contained in:
parent
b86ca17101
commit
4120cda2d2
1 changed files with 5 additions and 3 deletions
|
@ -21,10 +21,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
#ifndef __ASM_I386__
|
||||
#define __ASM_I386__
|
||||
|
||||
#ifdef ELF
|
||||
#define C(label) label
|
||||
#include <config.h>
|
||||
|
||||
#ifdef HAVE_SYM_PREFIX_UNDERSCORE
|
||||
# define C(label) _##label
|
||||
#else
|
||||
#define C(label) _##label
|
||||
# define C(label) label
|
||||
#endif
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue