mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-13 12:23:33 +08:00
* Makefile.in: Bump to version 1.97.
* ar.c: Declare errno for machines that need it.
This commit is contained in:
parent
2501643aea
commit
5b07d69372
@ -1,3 +1,8 @@
|
|||||||
|
Tue May 5 12:00:58 1992 Per Bothner (bothner@rtl.cygnus.com)
|
||||||
|
|
||||||
|
* Makefile.in: Bump to version 1.97.
|
||||||
|
* ar.c: Declare errno for machines that need it.
|
||||||
|
|
||||||
Mon May 4 23:29:51 1992 John Gilmore (gnu@cygnus.com)
|
Mon May 4 23:29:51 1992 John Gilmore (gnu@cygnus.com)
|
||||||
|
|
||||||
* objdump.c (display_info): Handle error cases without coredump.
|
* objdump.c (display_info): Handle error cases without coredump.
|
||||||
|
@ -61,7 +61,7 @@ BISONFLAGS = -tvd
|
|||||||
TEXI2ROFF=texi2roff
|
TEXI2ROFF=texi2roff
|
||||||
|
|
||||||
# Distribution version
|
# Distribution version
|
||||||
VERSION=1.96
|
VERSION=1.97
|
||||||
# Distribution name
|
# Distribution name
|
||||||
DIST_NAME=binutils-${VERSION}
|
DIST_NAME=binutils-${VERSION}
|
||||||
|
|
||||||
|
@ -37,9 +37,12 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#endif
|
#endif
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#ifndef errno
|
||||||
|
extern int errno;
|
||||||
|
#endif
|
||||||
#define BUFSIZE 8192
|
#define BUFSIZE 8192
|
||||||
|
|
||||||
void EXFUN(open_inarch,(char *archive_filename));
|
|
||||||
|
|
||||||
|
|
||||||
PROTO(void, print_contents, (bfd * member));
|
PROTO(void, print_contents, (bfd * member));
|
||||||
@ -391,7 +394,7 @@ char *file;
|
|||||||
return filename;
|
return filename;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
int
|
||||||
open_inarch(archive_filename)
|
open_inarch(archive_filename)
|
||||||
char *archive_filename;
|
char *archive_filename;
|
||||||
{
|
{
|
||||||
@ -406,7 +409,7 @@ open_inarch(archive_filename)
|
|||||||
fprintf (stderr, "%s: %s not found.\n", program_name,
|
fprintf (stderr, "%s: %s not found.\n", program_name,
|
||||||
archive_filename);
|
archive_filename);
|
||||||
maybequit();
|
maybequit();
|
||||||
return ;
|
return 0;
|
||||||
}
|
}
|
||||||
if (!silent_create)
|
if (!silent_create)
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
@ -446,6 +449,7 @@ open_inarch(archive_filename)
|
|||||||
if (bfd_error != no_more_archived_files)
|
if (bfd_error != no_more_archived_files)
|
||||||
goto bloser;
|
goto bloser;
|
||||||
}
|
}
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user