Skip to content

Instantly share code, notes, and snippets.

@bbannier
Created December 23, 2011 21:31
Show Gist options
  • Save bbannier/1515409 to your computer and use it in GitHub Desktop.
Save bbannier/1515409 to your computer and use it in GitHub Desktop.
Enable floating point eceptions
#include <fenv.h>
// enable protection against fishy floating point arithmetic
void __attribute__ ((constructor)) trapfe() {
feenableexcept(FE_INVALID | FE_OVERFLOW | FE_DIVBYZERO);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment