diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-11-29 12:40:10 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-11-29 12:40:10 +0000 |
commit | f0f449cc0019ba2409e4cd72fae1e8c190e8c8d4 (patch) | |
tree | 5c8c13162a52214eb2d4471b4b1dc47ef73f2ef1 /libc/sysdeps/linux/sh | |
parent | cc9ad66f8d4c5d356cf805fd12f2552e71581093 (diff) |
Silly me, I forgot to include features.h
Diffstat (limited to 'libc/sysdeps/linux/sh')
-rw-r--r-- | libc/sysdeps/linux/sh/crt0.S | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/sh/crt0.S b/libc/sysdeps/linux/sh/crt0.S index a27775ed0..cf2b7a6a3 100644 --- a/libc/sysdeps/linux/sh/crt0.S +++ b/libc/sysdeps/linux/sh/crt0.S @@ -1,6 +1,7 @@ /* Startup code for SH & ELF. Copyright (C) 1999 Free Software Foundation, Inc. Copyright (C) 2001 Hewlett-Packard Australia + Copyright (C) 2002 Stefan Allius This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free @@ -15,12 +16,9 @@ You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - Derived in part from the Linux-8086 C library, the GNU C Library, and several - other sundry sources. Files within this library are copyright by their - respective copyright holders. */ + /* This is the canonical entry point, usually the first thing in the text segment. @@ -35,6 +33,9 @@ ... NULL */ + +#include <features.h> + .file "crt0.S" .text .globl _start |