From 2b53f3a0d221f9f0b2b5bd103dd85e83b79529f1 Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Sun, 29 Oct 2000 04:47:00 +0000
Subject: [PATCH] Eliminated argument unused warning with Borland C++.

---
 src/sbbs3/ars.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/sbbs3/ars.c b/src/sbbs3/ars.c
index 3fc8928a72..e1e8968f58 100644
--- a/src/sbbs3/ars.c
+++ b/src/sbbs3/ars.c
@@ -39,6 +39,9 @@
 
 /* Converts ASCII ARS string into binary ARS buffer */
 
+#ifdef __BORLANDC__	/* Eliminate warning when buildling Baja */
+#pragma argsused
+#endif
 uchar* arstr(ushort* count, char* str, scfg_t* cfg)
 {
 	static uchar nular[2]={0};
-- 
GitLab