mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
14 lines
91 B
C
14 lines
91 B
C
|
int copy = 1;
|
||
|
|
||
|
int
|
||
|
get_copy ()
|
||
|
{
|
||
|
return copy;
|
||
|
}
|
||
|
|
||
|
int *
|
||
|
get_copy_p ()
|
||
|
{
|
||
|
return ©
|
||
|
}
|