use unsigned char instead of uint8_t, easier for portability
This commit is contained in:
parent
b04b7da893
commit
27eb1769a9
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh -
|
||||
# $NetBSD: mkops,v 1.4 2011/02/05 19:10:40 christos Exp $
|
||||
# $NetBSD: mkops,v 1.5 2011/02/06 18:28:22 christos Exp $
|
||||
#
|
||||
# Copyright (c) 2011 The NetBSD Foundation, Inc.
|
||||
# All rights reserved.
|
||||
|
@ -70,7 +70,7 @@ BEGIN {
|
|||
printf("mod_t modtab[NOPS];\n");
|
||||
printf("static const struct {\n");
|
||||
printf("\tmod_t\tm;\n");
|
||||
printf("\tuint8_t\tok;\n");
|
||||
printf("\tunsigned char\tok;\n");
|
||||
printf("} imods[] = {\n");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue