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:
Brad Roberts 2007-11-19 09:13:06 +00:00
parent 9e408b5ce4
commit 74e5d43355

View file

@ -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;
}