comparison lphobos/std/c/linux/linuxextern.d @ 1:c53b6e3fe49a trunk

[svn r5] Initial commit. Most things are very rough.
author lindquist
date Sat, 01 Sep 2007 21:43:27 +0200
parents
children 058d3925950e
comparison
equal deleted inserted replaced
0:a9e71648e74d 1:c53b6e3fe49a
1
2 /* Written by Walter Bright.
3 * www.digitalmars.com
4 * Placed into public domain.
5 * Linux(R) is the registered trademark of Linus Torvalds in the U.S. and other
6 * countries.
7 */
8
9 /* These are all the globals defined by the linux C runtime library.
10 * Put them separate so they'll be externed - do not link in linuxextern.o
11 */
12
13 module std.c.linux.linuxextern;
14
15 extern (C)
16 {
17 void* __libc_stack_end;
18 int __data_start;
19 int _end;
20 int timezone;
21
22 void *_deh_beg;
23 void *_deh_end;
24 }
25