~vorlon/ubuntu/natty/eglibc/multiarch

« back to all changes in this revision

Viewing changes to ports/sysdeps/arm/eabi/fraiseexcpt.c

  • Committer: Steve Langasek
  • Date: 2011-02-18 21:18:44 UTC
  • mfrom: (103.1.7 eglibc)
  • Revision ID: steve.langasek@linaro.org-20110218211844-lodmi8b1qhyq3f3x
Tags: 2.13~pre1-0ubuntu1+multiarch.1
merge from natty

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Raise given exceptions.
2
 
   Copyright (C) 2004, 2005 Free Software Foundation, Inc.
 
2
   Copyright (C) 2004, 2005, 2011 Free Software Foundation, Inc.
3
3
   This file is part of the GNU C Library.
4
4
 
5
5
   The GNU C Library is free software; you can redistribute it and/or
103
103
      return 0;
104
104
    }
105
105
 
106
 
  /* Unsupported, so fail.  */
107
 
  return 1;
 
106
  /* Unsupported, so fail unless nothing needs to be done.  */
 
107
  return (excepts != 0);
108
108
}
109
109
 
110
110
libm_hidden_def (feraiseexcept)