921e5a0eb4
From-SVN: r14840
15 lines
145 B
C
15 lines
145 B
C
typedef short type;
|
|
|
|
short
|
|
foo (type *sp, int a)
|
|
{
|
|
type t;
|
|
int i;
|
|
|
|
t = sp[a];
|
|
i = (int)(type)sp[a];
|
|
if (i)
|
|
return 0;
|
|
return t;
|
|
}
|