summaryrefslogtreecommitdiff
path: root/emulators/swarm/patches/patch-ai
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/swarm/patches/patch-ai')
-rw-r--r--emulators/swarm/patches/patch-ai15
1 files changed, 15 insertions, 0 deletions
diff --git a/emulators/swarm/patches/patch-ai b/emulators/swarm/patches/patch-ai
new file mode 100644
index 00000000000..dc101d30b8c
--- /dev/null
+++ b/emulators/swarm/patches/patch-ai
@@ -0,0 +1,15 @@
+$NetBSD: patch-ai,v 1.1 2004/08/12 19:59:51 agc Exp $
+
+--- alu.cpp 2004/08/12 18:49:18 1.1
++++ alu.cpp 2004/08/12 18:49:37
+@@ -24,7 +24,9 @@
+
+ #include "swarm.h"
+ #include "alu.h"
+-#include <iostream.h>
++#include <iostream>
++
++using namespace std;
+
+ #define CARRY_FROM(_a,_b,_r) ((_a >> 31) ? ((_b >> 31) | ((~_r) >> 31)) : ((_b >> 31) * ((~_r) >> 31)))
+