From 3a0b251235220c9081cd163e00d9ebe167c6a346 Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Thu, 2 Apr 2009 13:20:35 +0000 Subject: [PATCH] Fixed rangetest to work with the new support headers (it doesn't need the CIF header, only the plain header) --- rangetest.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rangetest.c b/rangetest.c index 8f32346..926c6db 100644 --- a/rangetest.c +++ b/rangetest.c @@ -3,7 +3,8 @@ int g_stopped; #define occam_stop(pos, nargs, format, args...) do { g_stopped = 1; } while (0) #define occam_INT_size SIZEOF_INT -#include "support/tock_support_cif.h" +#define occam_extra_param +#include "support/tock_support.h" #define report_failure(msg, args...) { printf(msg, ##args); }