CVS difference for acats/new/cxb30240.c
--- acats/new/cxb30240.c 2015/11/26 01:30:04 1.1
+++ acats/new/cxb30240.c 2015/12/10 02:22:09 1.2
@@ -63,6 +63,7 @@
-- CHANGE HISTORY:
-- 06 Sep 2015 BJM Created function.
-- 25 Nov 2015 RLB Changed naming consistent with ACATS.
+-- 09 Dec 2015 RLB Removed void pointer case.
--
--!*/
#include <stdio.h>
@@ -70,8 +71,7 @@
typedef enum { INTEGER = 0,
CHARACTER = 1,
STRING = 2,
- REAL = 3,
- POINTER = 4} data_kind_t;
+ REAL = 3} data_kind_t;
typedef struct
{
@@ -82,7 +82,6 @@
char character;
char *string;
float real;
- void *pointer;
} x;
} variant_t;
@@ -105,10 +104,6 @@
case REAL:
sprintf(output, "Type: Real, Val: %.2f", var->x.real);
- break;
-
- case POINTER:
- sprintf(output, "Type: Pointer, Val: %p", var->x.pointer);
break;
default:
Questions? Ask the ACAA Technical Agent