1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

Revert "elf: Fix 64 time_t support for installed statically binaries"

This reverts commit 0b8e83eb14.
This commit is contained in:
Adhemerval Zanella
2022-01-17 10:56:58 -03:00
parent f545ad4928
commit cedd498dbc
6 changed files with 39 additions and 39 deletions

View File

@@ -78,11 +78,11 @@ extern void init_aux_cache (void);
extern void load_aux_cache (const char *aux_cache_name);
extern int search_aux_cache (struct stat *stat_buf, int *flags,
extern int search_aux_cache (struct stat64 *stat_buf, int *flags,
unsigned int *osversion,
unsigned int *isa_level, char **soname);
extern void add_to_aux_cache (struct stat *stat_buf, int flags,
extern void add_to_aux_cache (struct stat64 *stat_buf, int flags,
unsigned int osversion,
unsigned int isa_level, const char *soname);
@@ -93,7 +93,7 @@ extern int process_file (const char *real_file_name, const char *file_name,
const char *lib, int *flag,
unsigned int *osversion, unsigned int *isa_level,
char **soname, int is_link,
struct stat *stat_buf);
struct stat64 *stat_buf);
extern char *implicit_soname (const char *lib, int flag);