8 lines
74 B
C
8 lines
74 B
C
|
foo (p)
|
||
|
short *p;
|
||
|
{
|
||
|
static int *foo;
|
||
|
*p = 1234;
|
||
|
*foo = 1234;
|
||
|
}
|