Initial revision
authorPer Bothner <per@bothner.com>
Mon, 18 Nov 1991 08:04:02 +0000 (08:04 +0000)
committerPer Bothner <per@bothner.com>
Mon, 18 Nov 1991 08:04:02 +0000 (08:04 +0000)
binutils/is-strip.c [new file with mode: 0644]
binutils/maybe-strip.c [new file with mode: 0644]
binutils/not-strip.c [new file with mode: 0644]

diff --git a/binutils/is-strip.c b/binutils/is-strip.c
new file mode 100644 (file)
index 0000000..f5e1cac
--- /dev/null
@@ -0,0 +1,3 @@
+/* Linked with copy.o to flag that this program is 'strip' (not 'copy'). */
+
+int is_strip = 1;
diff --git a/binutils/maybe-strip.c b/binutils/maybe-strip.c
new file mode 100644 (file)
index 0000000..7da8763
--- /dev/null
@@ -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;
diff --git a/binutils/not-strip.c b/binutils/not-strip.c
new file mode 100644 (file)
index 0000000..0e491fb
--- /dev/null
@@ -0,0 +1,3 @@
+/* Linked with copy.o to flag that this program is 'copy' (not 'strip'). */
+
+int is_strip = 0;
This page took 0.046839 seconds and 4 git commands to generate.