]> Shamusworld >> Repos - rmac/blobdiff - rmac.c
Various code cleanups, mainly to do with RISC assembly.
[rmac] / rmac.c
diff --git a/rmac.c b/rmac.c
index 8dde4c6d9a34925a534de81a25cd2c7fb8b8b8b4..6dd9475d7db3b7a7aa848820977d45f2e78bdf75 100644 (file)
--- a/rmac.c
+++ b/rmac.c
@@ -15,7 +15,7 @@
 #include "sect.h"
 #include "mark.h"
 #include "macro.h"
-#include "risca.h"
+#include "riscasm.h"
 #include "direct.h"
 #include "version.h"
 #include "debug.h"
@@ -65,7 +65,8 @@ static int qsz;                                             // Size of each reco
 static int thresh;                                          // THRESHold in chars 
 static int mthresh;                                         // MTHRESHold in chars
 
-
+// This is unused BOLLOCKS
+#if 0
 //
 // qst: Do a quicksort. First, find the median element, and put that one in the
 // first place as the discriminator. (This "median" is just the median of the
@@ -298,7 +299,7 @@ int rmac_qsort(char * base, int n, int size, int (*compar)())
 
        return 0;
 }
-
+#endif
 
 #if 0
 //