Mercurial > emacs
annotate src/cxux-crt0.s @ 68083:4aea781df851
(mh-mml-tag-present-p): Update regexp to handle <mml> tags inserted by
Gnus gnus-summary-mail-forward (closes SF #1399307).
author | Bill Wohler <wohler@newt.com> |
---|---|
date | Sat, 07 Jan 2006 18:23:44 +0000 |
parents | a0d1312ede66 |
children | 3bd95f4f2941 2d92f5c9d6ae |
rev | line source |
---|---|
25843 | 1 /* |
2 * External symbol setup file for GNU Emacs on CX/UX | |
64770
a0d1312ede66
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
3 * Copyright (C) 1990, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. |
25843 | 4 * |
5 * This file is part of GNU Emacs. | |
6 * | |
7 * GNU Emacs is distributed in the hope that it will be useful, | |
8 * but WITHOUT ANY WARRANTY. No author or distributor | |
9 * accepts responsibility to anyone for the consequences of using it | |
10 * or for whether it serves any particular purpose or works at all, | |
11 * unless he says so in writing. Refer to the GNU Emacs General Public | |
12 * License for full details. | |
13 * | |
14 * Everyone is granted permission to copy, modify and redistribute | |
15 * GNU Emacs, but only under the conditions described in the | |
16 * GNU Emacs General Public License. A copy of this license is | |
17 * supposed to have been given to you along with GNU Emacs so you | |
18 * can know your rights and responsibilities. It should be in a | |
19 * file named COPYING. Among other things, the copyright notice | |
20 * and this notice must be preserved on all copies. | |
21 */ | |
22 | |
23 /* | |
24 * This file makes the start of the text and data regions of the program | |
25 * clearly visible to the GNU Emacs C source code, without any dependencies | |
26 * on any changes made to the standard C runtime startup module, crt0.o. | |
27 * It depends, however, on this file being passed down to the linker (ld) | |
28 * before any others, and the linker's behavior of assigning increasing | |
29 * addresses as it finds symbols. | |
30 */ | |
31 /* C symbol _start marks beginning of text region. */ | |
32 .text | |
33 .globl __start | |
34 __start: | |
35 /* C symbol data_start marks beginning of data region. */ | |
36 .data | |
37 .globl _data_start | |
38 _data_start: .space 4 | |
52401 | 39 |
40 /* arch-tag: ba84e4dc-615d-4a81-898c-f5b98ec71c9d | |
41 (do not change this comment) */ |