From e73613a6992c48c07ef116c2c42b550b0651c6e3 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 31 May 2001 20:17:55 +0000 Subject: [PATCH] added 8 bit unsigned integer type --- src/ca/caProto.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ca/caProto.h b/src/ca/caProto.h index 68dbeb1b9..b901cc289 100644 --- a/src/ca/caProto.h +++ b/src/ca/caProto.h @@ -98,6 +98,7 @@ * * (so far this works on all archs we have ported to) */ +typedef unsigned char ca_uint8_t; typedef unsigned short ca_uint16_t; typedef unsigned int ca_uint32_t; typedef float ca_float32_t;