Initial revision

This commit is contained in:
Per Bothner 1991-10-07 23:14:25 +00:00
parent bee36ac3e7
commit ef82baf8c5
4 changed files with 13 additions and 0 deletions

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

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

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

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

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

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

3
binutils/ranlib.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
# A simple ranlib script, to use less disk space than a ranlib program.
ar s $1