<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Do not import system headers into namespace std.
Fixes "error: reference to 'std' is ambiguous".
--- src/expr.cpp.orig	2002-10-20 08:03:12.000000000 -0500
+++ src/expr.cpp	2018-10-08 00:38:51.000000000 -0500
@@ -14,14 +14,11 @@
 
 #line 1 "expr.y"
 
-namespace std {  
 #include &lt;stdio.h&gt;
 #include &lt;memory.h&gt;
 #include &lt;stdlib.h&gt;
 #include &lt;string.h&gt;
-}
 
-using namespace std;
  
 #include "System.h"
 #include "elf.h"
</pre></body></html>