mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
34 lines
448 B
C
34 lines
448 B
C
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
__thread int bar = 301;
|
||
|
|
||
|
extern int *test1 (int);
|
||
|
extern int *test2 (int);
|
||
|
extern int *test3 (int);
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
int *p;
|
||
|
p = test1 (30);
|
||
|
if (*p != 30)
|
||
|
abort ();
|
||
|
*p = 40;
|
||
|
test1 (40);
|
||
|
p = test2 (301);
|
||
|
if (*p != 301)
|
||
|
abort ();
|
||
|
if (p != &bar)
|
||
|
abort ();
|
||
|
*p = 40;
|
||
|
test2 (40);
|
||
|
p = test3 (40);
|
||
|
if (*p != 40)
|
||
|
abort ();
|
||
|
*p = 50;
|
||
|
test3 (50);
|
||
|
puts ("PASS");
|
||
|
return 0;
|
||
|
}
|