summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormcafee%netscape.com <devnull@localhost>1999-01-22 04:07:13 +0000
committermcafee%netscape.com <devnull@localhost>1999-01-22 04:07:13 +0000
commitb765530daa53d775706fab99bdf3d06ad73a42d3 (patch)
treee8fdba403199f9eed7ceb3f43bfe1a85aac58f31
parented705db5fddad47bdc8489879bf1cbf57c7f9c32 (diff)
downloadnss-hg-b765530daa53d775706fab99bdf3d06ad73a42d3.tar.gz
STDARG=1 is the default until we can autoconf this
-rw-r--r--dbm/tests/lots.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/dbm/tests/lots.c b/dbm/tests/lots.c
index 9fb73a0fe..eecec7b6c 100644
--- a/dbm/tests/lots.c
+++ b/dbm/tests/lots.c
@@ -38,12 +38,17 @@
*/
#include <stdio.h>
+
+/* Hmm, everyone seems to be defining this. */
+#define STDARG
#include <stdlib.h>
#ifdef STDARG
#include <stdarg.h>
#else
#include <varargs.h>
#endif
+
+
#include <memory.h>
#include <string.h>
#include <assert.h>
@@ -60,6 +65,9 @@ int MsgPriority=5;
#define uint32 unsigned int
#endif
+/* Hmm, everyone seems to be defining this. */
+#define STDARG
+
typedef enum {
USE_LARGE_KEY,
USE_SMALL_KEY