diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-04-17 10:51:43 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-04-17 10:51:43 +0200 |
commit | ee00428abe9c842a945773db80cf00471184e9c8 (patch) | |
tree | d2d00eb089777564d8460482a6172c033e79d9df /gcc/ada/init.c | |
parent | d23a572fca4b29667c9758192d769ff5e34efe33 (diff) | |
download | gcc-ee00428abe9c842a945773db80cf00471184e9c8.zip gcc-ee00428abe9c842a945773db80cf00471184e9c8.tar.gz gcc-ee00428abe9c842a945773db80cf00471184e9c8.tar.bz2 |
[multiple changes]
2009-04-17 Pascal Obry <obry@adacore.com>
* adaint.h, argv.c (__gnat_init_args): New routine used to initialize
command line arguments.
* bindgen.adb: Call __gnat_init_args instead of simple assignments of
argc, argv and envp parameters.
* init.c: Fix minor typo and style fix.
2009-04-17 Nicolas Setton <setton@adacore.com>
* link.c: Add darwin section
From-SVN: r146224
Diffstat (limited to 'gcc/ada/init.c')
-rw-r--r-- | gcc/ada/init.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/ada/init.c b/gcc/ada/init.c index fab0942..7ac5a26 100644 --- a/gcc/ada/init.c +++ b/gcc/ada/init.c @@ -53,7 +53,7 @@ #include "tsystem.h" #include <sys/stat.h> -/* We don't have libiberty, so us malloc. */ +/* We don't have libiberty, so use malloc. */ #define xmalloc(S) malloc (S) #else #include "config.h" @@ -1964,7 +1964,6 @@ __gnat_init_float (void) checking is not used. */ void (*__gnat_set_stack_limit_hook)(void) = (void (*)(void))0; - /******************/ /* NetBSD Section */ /******************/ |