diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-09-16 05:46:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-09-16 05:46:27 +0000 |
commit | 005f8d92720387e74ab5decd8407c2c50a6e454e (patch) | |
tree | 904e01076195695a1969b47731b3fbe9545f4b84 | |
parent | 6d60c4805ac4dda666d0632f5dbc2a8c4b15654f (diff) | |
download | glibc-005f8d92720387e74ab5decd8407c2c50a6e454e.zip glibc-005f8d92720387e74ab5decd8407c2c50a6e454e.tar.gz glibc-005f8d92720387e74ab5decd8407c2c50a6e454e.tar.bz2 |
(argp_parse, __argp_parse): Remove __THROW.
-rw-r--r-- | argp/argp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/argp/argp.h b/argp/argp.h index d2ceea1..7d2dca2 100644 --- a/argp/argp.h +++ b/argp/argp.h @@ -380,11 +380,11 @@ struct argp_state extern error_t argp_parse (__const struct argp *__restrict __argp, int __argc, char **__restrict __argv, unsigned __flags, int *__restrict __arg_index, - void *__restrict __input) __THROW; + void *__restrict __input); extern error_t __argp_parse (__const struct argp *__restrict __argp, int __argc, char **__restrict __argv, unsigned __flags, int *__restrict __arg_index, - void *__restrict __input) __THROW; + void *__restrict __input); /* Global variables. */ |