~vorlon/ubuntu/natty/eglibc/multiarch

« back to all changes in this revision

Viewing changes to ports/sysdeps/arm/eabi/fsetexcptflg.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
/* Set floating-point environment exception handling.
2
 
   Copyright (C) 1997,98,99,2000,01,05,08 Free Software Foundation, Inc.
 
2
   Copyright (C) 1997,98,99,2000,01,05,08,11 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
47
47
      return 0;
48
48
    }
49
49
 
50
 
  /* Unsupported, so fail.  */
51
 
  return 1;
 
50
  /* Unsupported, so fail unless nothing needs to be done.  */
 
51
  return (excepts != 0);
52
52
}
53
53
 
54
54
#include <shlib-compat.h>