mirror of
https://github.com/dlang/phobos.git
synced 2025-05-06 11:07:39 +03:00
change symbols to be properly externed so that the file can be made a part of the phobos .a file
This commit is contained in:
parent
9e408b5ce4
commit
74e5d43355
1 changed files with 6 additions and 6 deletions
|
@ -14,12 +14,12 @@ module std.c.linux.linuxextern;
|
|||
|
||||
extern (C)
|
||||
{
|
||||
void* __libc_stack_end;
|
||||
int __data_start;
|
||||
int _end;
|
||||
int timezone;
|
||||
extern void* __libc_stack_end;
|
||||
extern int __data_start;
|
||||
extern int _end;
|
||||
extern int timezone;
|
||||
|
||||
void *_deh_beg;
|
||||
void *_deh_end;
|
||||
extern void *_deh_beg;
|
||||
extern void *_deh_end;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue