Mercurial > hg > xemacs-beta
annotate src/pre-crt0.c @ 5435:aa729daae5e2
Added GPLv3 or later license and copyright notice to GTK ChangeLogs.
author | Mats Lidell <matsl@xemacs.org> |
---|---|
date | Sat, 13 Nov 2010 00:15:17 +0100 |
parents | 308d34e9f07d |
children |
rev | line source |
---|---|
0 | 1 /* This file is part of XEmacs. |
2 | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
0
diff
changeset
|
3 XEmacs is free software: you can redistribute it and/or modify it |
0 | 4 under the terms of the GNU General Public License as published by the |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
0
diff
changeset
|
5 Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
0
diff
changeset
|
6 option) any later version. |
0 | 7 |
8 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
9 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
10 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
11 for more details. | |
12 | |
13 You should have received a copy of the GNU General Public License | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
0
diff
changeset
|
14 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */ |
0 | 15 |
16 /* Synched up with: FSF 19.30. */ | |
17 | |
18 /* This file is loaded before crt0.o on machines where we do not | |
19 remap part of the data space into text space in unexec. | |
20 On these machines, there is no problem with standard crt0.o's | |
21 that make environ an initialized variable. However, we do | |
22 need to make sure the label data_start exists anyway. */ | |
23 | |
24 /* Create a label to appear at the beginning of data space. */ | |
25 | |
26 int data_start = 0; |