mirror of
https://github.com/dlang/phobos.git
synced 2025-05-10 22:18:03 +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)
|
extern (C)
|
||||||
{
|
{
|
||||||
void* __libc_stack_end;
|
extern void* __libc_stack_end;
|
||||||
int __data_start;
|
extern int __data_start;
|
||||||
int _end;
|
extern int _end;
|
||||||
int timezone;
|
extern int timezone;
|
||||||
|
|
||||||
void *_deh_beg;
|
extern void *_deh_beg;
|
||||||
void *_deh_end;
|
extern void *_deh_end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue