mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 19:29:26 +02:00
* fix compilation failure in 2.1 branch
reason is that cvar was .comm before and is now .bss, you need to explicitly add public to added the .globl that makes the assembler symbol accessible in other objects. git-svn-id: trunk@5558 -
This commit is contained in:
parent
87a4372d7f
commit
34b049d876
@ -645,7 +645,7 @@ end;
|
||||
|
||||
var
|
||||
signal_list : Array[0..SIGMAX] of SignalHandler;cvar;
|
||||
{$ifndef CREATE_C_FUNCTIONS}external;{$endif}
|
||||
{$ifndef CREATE_C_FUNCTIONS}external;{$else}public;{$endif}
|
||||
|
||||
{$ifdef CREATE_C_FUNCTIONS}
|
||||
function SIG_ERR(x:longint):longint;[public,alias : '___djgpp_SIG_ERR'];
|
||||
|
Loading…
Reference in New Issue
Block a user