mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-31 10:34:41 +01:00
0cb01df558
Change-Id: I7a413a81d33762f3cb1e8c67883d1e616f83d0e9 Reviewed-on: https://review.haiku-os.org/c/1536 Reviewed-by: Alex von Gluck IV <kallisti5@unixzen.com>
15 lines
202 B
C
15 lines
202 B
C
#include <stdio.h>
|
|
|
|
extern int copy;
|
|
extern int get_copy (void);
|
|
extern int* get_copy_p (void);
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if (copy == get_copy () && © == get_copy_p ())
|
|
printf ("PASS\n");
|
|
|
|
return 0;
|
|
}
|