=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/lex/flexint.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- src/usr.bin/lex/flexint.h 2015/11/19 19:43:40 1.1 +++ src/usr.bin/lex/flexint.h 2023/10/21 14:09:16 1.2 @@ -1,4 +1,4 @@ -/* $OpenBSD: flexint.h,v 1.1 2015/11/19 19:43:40 tedu Exp $ */ +/* $OpenBSD: flexint.h,v 1.2 2023/10/21 14:09:16 deraadt Exp $ */ /* flex integer type definitions */ @@ -10,7 +10,7 @@ #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, - * if you want the limit (max/min) macros for int types. + * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 @@ -27,7 +27,7 @@ typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; -typedef unsigned char flex_uint8_t; +typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t;