This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/lib/asan/asan_linux.cc b/lib/asan/asan_linux.cc | |
index e26b400..9618933 100644 | |
--- a/lib/asan/asan_linux.cc | |
+++ b/lib/asan/asan_linux.cc | |
@@ -39,7 +39,7 @@ | |
#include <sys/link_elf.h> | |
#endif | |
-#if SANITIZER_ANDROID || SANITIZER_FREEBSD | |
+#if SANITIZER_ANDROID || SANITIZER_FREEBSD || SANITIZER_NONGNU |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE OverloadedStrings #-} | |
{- To Run: | |
Load in ghci | |
:set -XOverloadedStrings (for convenience) | |
Execute repl expr -} | |
import Control.Applicative | |
import Data.Attoparsec hiding (Result) | |
import Data.Attoparsec.Char8 (char8, isDigit_w8, isSpace_w8) |