mirror of git://sourceware.org/git/glibc.git
Update.
* posix/unistd.h: Remove setkey, rename, and cuserid prototypes as they are not anymore required here.
This commit is contained in:
parent
7e3399b393
commit
8de72f531e
|
@ -1,5 +1,8 @@
|
||||||
2000-08-13 Ulrich Drepper <drepper@redhat.com>
|
2000-08-13 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* posix/unistd.h: Remove setkey, rename, and cuserid prototypes as
|
||||||
|
they are not anymore required here.
|
||||||
|
|
||||||
* nss/Makefile: Remove rules to build and distribute nss_db.
|
* nss/Makefile: Remove rules to build and distribute nss_db.
|
||||||
|
|
||||||
* sysdeps/generic/alphasort64.c: Remove unnecessary versioning.
|
* sysdeps/generic/alphasort64.c: Remove unnecessary versioning.
|
||||||
|
|
|
@ -952,9 +952,6 @@ extern int fdatasync (int __fildes) __THROW;
|
||||||
/* Encrypt at most 8 characters from KEY using salt to perturb DES. */
|
/* Encrypt at most 8 characters from KEY using salt to perturb DES. */
|
||||||
extern char *crypt (__const char *__key, __const char *__salt) __THROW;
|
extern char *crypt (__const char *__key, __const char *__salt) __THROW;
|
||||||
|
|
||||||
/* Setup DES tables according KEY. */
|
|
||||||
extern void setkey (__const char *__key) __THROW;
|
|
||||||
|
|
||||||
/* Encrypt data in BLOCK in place if EDFLAG is zero; otherwise decrypt
|
/* Encrypt data in BLOCK in place if EDFLAG is zero; otherwise decrypt
|
||||||
block in place. */
|
block in place. */
|
||||||
extern void encrypt (char *__block, int __edflag) __THROW;
|
extern void encrypt (char *__block, int __edflag) __THROW;
|
||||||
|
@ -968,18 +965,11 @@ extern void swab (__const void *__from, void *__to, ssize_t __n) __THROW;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/* The Single Unix specification, version 2, demands these prototypes
|
/* The Single Unix specification demands this prototype to be here.
|
||||||
to be here. They are also found in <stdio.h>. */
|
It is also found in <stdio.h>. */
|
||||||
#ifdef __USE_XOPEN
|
#ifdef __USE_XOPEN
|
||||||
/* Return the name of the controlling terminal. */
|
/* Return the name of the controlling terminal. */
|
||||||
extern char *ctermid (char *__s) __THROW;
|
extern char *ctermid (char *__s) __THROW;
|
||||||
|
|
||||||
/* Return the name of the current user. This function should not be
|
|
||||||
used and might go away some time. */
|
|
||||||
extern char *cuserid (char *__s) __THROW;
|
|
||||||
|
|
||||||
/* Rename file OLD to NEW. */
|
|
||||||
extern int rename (__const char *__old, __const char *__new) __THROW;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue