diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2006-11-08 19:36:56 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2006-11-08 19:36:56 +0000 |
commit | c0977673acb66eb05898458a280da873067e6709 (patch) | |
tree | 6e68ea94b3a4fedf1ac12945af7a8cb4d48201c0 /libgloss/syscall.h | |
parent | 292f8e2328d56d163f5a2fc7f07f348ccd6bb1ae (diff) | |
download | cygnal-c0977673acb66eb05898458a280da873067e6709.tar.gz cygnal-c0977673acb66eb05898458a280da873067e6709.tar.bz2 cygnal-c0977673acb66eb05898458a280da873067e6709.zip |
2006-11-08 Jie Zhang <jzhang918@gmail.com>
* bfin/configure.in: New.
* bfin/crt0.S: New.
* bfin/Makefile.in: New.
* bfin/syscalls.c: New.
* bfin/aclocal.m4: Generate.
* bfin/configure: Ditto.
* configure.in: Add support for bfin-*-*.
* configure: Regenerate.
* syscall.h (SYS_argc): Define.
(SYS_argnlen): Define.
(SYS_argn): Define.
Diffstat (limited to 'libgloss/syscall.h')
-rw-r--r-- | libgloss/syscall.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libgloss/syscall.h b/libgloss/syscall.h index 665cfe892..38bedaae6 100644 --- a/libgloss/syscall.h +++ b/libgloss/syscall.h @@ -46,4 +46,9 @@ #define SYS_gettimeofday 19 #define SYS_times 20 #define SYS_link 21 + +/* New ARGV support. */ +#define SYS_argc 22 +#define SYS_argnlen 23 +#define SYS_argn 24 #endif |