Initial revision

This commit is contained in:
Per Bothner 1991-11-18 08:04:02 +00:00
parent 572acbbedc
commit cf0cdb8751
3 changed files with 10 additions and 0 deletions

3
binutils/is-strip.c Normal file
View File

@ -0,0 +1,3 @@
/* Linked with copy.o to flag that this program is 'strip' (not 'copy'). */
int is_strip = 1;

4
binutils/maybe-strip.c Normal file
View File

@ -0,0 +1,4 @@
/* Linked with copy.o to flag that this program decides at runtime
(using argv[0] if it is is 'strip' or 'copy'. */
int is_strip = -1;

3
binutils/not-strip.c Normal file
View File

@ -0,0 +1,3 @@
/* Linked with copy.o to flag that this program is 'copy' (not 'strip'). */
int is_strip = 0;