diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-21 20:08:36 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-21 20:08:36 +0000 |
commit | bb37062f41610518ad294049736488e122906ea6 (patch) | |
tree | 9c6b2d3c7e513a58a41d0e61372b5492764fb4e3 /libiberty/sigsetmask.c | |
parent | b37aff25e4769531da28908e404de60423705b45 (diff) | |
download | gcc-bb37062f41610518ad294049736488e122906ea6.tar.gz |
Warning fixes:
* cp-demangle.c (cp_demangle_type): Wrap in IN_LIBGCC2.
* setenv.c (setenv): Initialize variable `ep'.
* sigsetmask.c (abort): Prototype.
* vasprintf.c: Include config.h. Check ANSI_PROTOTYPES, not
__STDC__ for stdarg.h include.
(int_vasprintf): Prototype.
(checkit): Prototype. Use VPARAMS/ANSI_PROTOTYPES/VA_START in
definition. Cast `global_total_width' in comparison.
(main): Prototype. Return a value.
* vfork.c (fork): Prototype.
* xexit.c: Include config.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35178 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/sigsetmask.c')
-rw-r--r-- | libiberty/sigsetmask.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libiberty/sigsetmask.c b/libiberty/sigsetmask.c index 2a09e6a6c5a..db6408df75a 100644 --- a/libiberty/sigsetmask.c +++ b/libiberty/sigsetmask.c @@ -12,6 +12,8 @@ #include <sys/types.h> #include <signal.h> +extern void abort PARAMS ((void)) ATTRIBUTE_NORETURN; + #ifdef SIG_SETMASK int DEFUN(sigsetmask,(set), |