mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-01 10:06:57 +03:00
* sysdeps/unix/sysv/linux/tcdrain.c: Define tcdrain, not
__tcdrain. * posix/glob.c (glob): Use prototype in getlogin decl. * db/ndbm.h: Declare dbm_error, dbm_clearerr. * db/db/db.c (__dberr): Define with prototype. (__dbpanic): Use prototypes in casts. * db/hash/hash_log2.c: Add prototype decl. * sysdeps/generic/_strerror.c (_strerror_internal): Define with prototype.
This commit is contained in:
13
ChangeLog
13
ChangeLog
@ -1,5 +1,18 @@
|
|||||||
Fri Jan 19 13:28:59 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
Fri Jan 19 13:28:59 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/tcdrain.c: Define tcdrain, not
|
||||||
|
__tcdrain.
|
||||||
|
|
||||||
|
* posix/glob.c (glob): Use prototype in getlogin decl.
|
||||||
|
|
||||||
|
* db/ndbm.h: Declare dbm_error, dbm_clearerr.
|
||||||
|
* db/db/db.c (__dberr): Define with prototype.
|
||||||
|
(__dbpanic): Use prototypes in casts.
|
||||||
|
* db/hash/hash_log2.c: Add prototype decl.
|
||||||
|
|
||||||
|
* sysdeps/generic/_strerror.c (_strerror_internal): Define with
|
||||||
|
prototype.
|
||||||
|
|
||||||
* sysdeps/unix/mkdir.c, syspdep/unix/rmdir.c: Moved from unix/sysv.
|
* sysdeps/unix/mkdir.c, syspdep/unix/rmdir.c: Moved from unix/sysv.
|
||||||
They will be overridden with syscalls if extant by unix/syscalls.list.
|
They will be overridden with syscalls if extant by unix/syscalls.list.
|
||||||
|
|
||||||
|
18
db/db/db.c
18
db/db/db.c
@ -74,7 +74,7 @@ dbopen(fname, flags, mode, type, openinfo)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
__dberr()
|
__dberr __P((void))
|
||||||
{
|
{
|
||||||
return (RET_ERROR);
|
return (RET_ERROR);
|
||||||
}
|
}
|
||||||
@ -90,10 +90,14 @@ __dbpanic(dbp)
|
|||||||
DB *dbp;
|
DB *dbp;
|
||||||
{
|
{
|
||||||
/* The only thing that can succeed is a close. */
|
/* The only thing that can succeed is a close. */
|
||||||
dbp->del = (int (*)())__dberr;
|
dbp->del = (int (*)__P((const struct __db *,
|
||||||
dbp->fd = (int (*)())__dberr;
|
const DBT *, u_int))) __dberr;
|
||||||
dbp->get = (int (*)())__dberr;
|
dbp->get = (int (*)__P((const struct __db *,
|
||||||
dbp->put = (int (*)())__dberr;
|
const DBT *, DBT *, u_int))) __dberr;
|
||||||
dbp->seq = (int (*)())__dberr;
|
dbp->put = (int (*)__P((const struct __db *,
|
||||||
dbp->sync = (int (*)())__dberr;
|
DBT *, const DBT *, u_int))) __dberr;
|
||||||
|
dbp->seq = (int (*)__P((const struct __db *,
|
||||||
|
DBT *, DBT *, u_int))) __dberr;
|
||||||
|
dbp->sync = (int (*)__P((const struct __db *, u_int))) __dberr;
|
||||||
|
dbp->fd = (int (*)__P((const struct __db *))) __dberr;
|
||||||
}
|
}
|
||||||
|
@ -42,6 +42,8 @@ static char sccsid[] = "@(#)hash_log2.c 8.2 (Berkeley) 5/31/94";
|
|||||||
|
|
||||||
#include <db.h>
|
#include <db.h>
|
||||||
|
|
||||||
|
u_int32_t __log2 __P((u_int32_t));
|
||||||
|
|
||||||
u_int32_t
|
u_int32_t
|
||||||
__log2(num)
|
__log2(num)
|
||||||
u_int32_t num;
|
u_int32_t num;
|
||||||
|
@ -72,6 +72,8 @@ datum dbm_nextkey __P((DBM *));
|
|||||||
DBM *dbm_open __P((const char *, int, int));
|
DBM *dbm_open __P((const char *, int, int));
|
||||||
int dbm_store __P((DBM *, datum, datum, int));
|
int dbm_store __P((DBM *, datum, datum, int));
|
||||||
int dbm_dirfno __P((DBM *));
|
int dbm_dirfno __P((DBM *));
|
||||||
|
int dbm_error __P((DBM *));
|
||||||
|
int dbm_clearerr __P((DBM *));
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
||||||
#endif /* !_NDBM_H_ */
|
#endif /* !_NDBM_H_ */
|
||||||
|
@ -230,6 +230,10 @@ static int last_nonopt;
|
|||||||
`first_nonopt' and `last_nonopt' are relocated so that they describe
|
`first_nonopt' and `last_nonopt' are relocated so that they describe
|
||||||
the new indices of the non-options in ARGV after they are moved. */
|
the new indices of the non-options in ARGV after they are moved. */
|
||||||
|
|
||||||
|
#if defined (__STDC__) && __STDC__
|
||||||
|
static void exchange (char **);
|
||||||
|
#endif
|
||||||
|
|
||||||
static void
|
static void
|
||||||
exchange (argv)
|
exchange (argv)
|
||||||
char **argv;
|
char **argv;
|
||||||
@ -288,6 +292,9 @@ exchange (argv)
|
|||||||
|
|
||||||
/* Initialize the internal data when the first call is made. */
|
/* Initialize the internal data when the first call is made. */
|
||||||
|
|
||||||
|
#if defined (__STDC__) && __STDC__
|
||||||
|
static const char *_getopt_initialize (const char *);
|
||||||
|
#endif
|
||||||
static const char *
|
static const char *
|
||||||
_getopt_initialize (optstring)
|
_getopt_initialize (optstring)
|
||||||
const char *optstring;
|
const char *optstring;
|
||||||
|
@ -358,7 +358,7 @@ glob (pattern, flags, errfunc, pglob)
|
|||||||
dirname = getenv ("HOME");
|
dirname = getenv ("HOME");
|
||||||
if (dirname == NULL || dirname[0] == '\0')
|
if (dirname == NULL || dirname[0] == '\0')
|
||||||
{
|
{
|
||||||
extern char *getlogin ();
|
extern char *getlogin __P ((void));
|
||||||
char *name = getlogin ();
|
char *name = getlogin ();
|
||||||
if (name != NULL)
|
if (name != NULL)
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1991, 1993, 1995 Free Software Foundation, Inc.
|
/* Copyright (C) 1991, 1993, 1995, 1996 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -27,10 +27,9 @@ Cambridge, MA 02139, USA. */
|
|||||||
|
|
||||||
/* Return a string describing the errno code in ERRNUM. */
|
/* Return a string describing the errno code in ERRNUM. */
|
||||||
char *
|
char *
|
||||||
_strerror_internal (errnum, buf, buflen)
|
_strerror_internal (int errnum,
|
||||||
int errnum;
|
char *buf,
|
||||||
char *buf;
|
size_t buflen)
|
||||||
size_t buflen;
|
|
||||||
{
|
{
|
||||||
if (errnum < 0 || errnum >= _sys_nerr)
|
if (errnum < 0 || errnum >= _sys_nerr)
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1995 Free Software Foundation, Inc.
|
/* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -21,11 +21,9 @@ Cambridge, MA 02139, USA. */
|
|||||||
|
|
||||||
/* Wait for pending output to be written on FD. */
|
/* Wait for pending output to be written on FD. */
|
||||||
int
|
int
|
||||||
__tcdrain (fd)
|
tcdrain (fd)
|
||||||
int fd;
|
int fd;
|
||||||
{
|
{
|
||||||
/* With an argument of 1, TCSBRK for output to be drain. */
|
/* With an argument of 1, TCSBRK for output to be drain. */
|
||||||
return __ioctl (fd, TCSBRK, 1);
|
return __ioctl (fd, TCSBRK, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
weak_alias (__tcdrain, tcdrain)
|
|
||||||
|
Reference in New Issue
Block a user