Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20030920-1.c
blob: 2d22115c9fd92141744202e32863b961267a4aff [
file
] [
log
] [
blame
]
extern
void
abort
(
void
);
int
main
()
{
int
hicount
=
0
;
unsigned
char
*
c
;
char
*
str
=
"\x7f\xff"
;
for
(
c
=
(
unsigned
char
*)
str
;
*
c
;
c
++)
{
if
(!(((
unsigned
int
)(*
c
))
<
0x80
))
hicount
++;
}
if
(
hicount
!=
1
)
abort
();
return
0
;
}