Use isnan(3) to check for NaN #1
Reference in New Issue
Block a user
No description provided.
Delete Branch "master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
There's a standard C function (actually a macro) to check for NaN; let's use that for clarity.
Also pushed
5498516
which fixes a memory leakbtw to find the bug fixed by
5498516
:brew install valgrind
clang Layout.c
valgrind ./a.out
note complaint about "definitely lost" bytes, follow advice to re-run with --leak-check=full:
valgrind --leak-check=full ./a.out
Thanks! I definitively need to install valgrind :)