mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* catgets/nl_types.h: Likewise. * crypt/crypt.h: Likewise. * debug/execinfo.h: Likewise.
This commit is contained in:
@ -11,6 +11,9 @@
|
|||||||
* io/sys/statfs.h: Likewise.
|
* io/sys/statfs.h: Likewise.
|
||||||
* io/sys/statvfs.h: Likewise.
|
* io/sys/statvfs.h: Likewise.
|
||||||
* posix/unistd.h: Likewise.
|
* posix/unistd.h: Likewise.
|
||||||
|
* catgets/nl_types.h: Likewise.
|
||||||
|
* crypt/crypt.h: Likewise.
|
||||||
|
* debug/execinfo.h: Likewise.
|
||||||
|
|
||||||
2004-09-16 Ulrich Drepper <drepper@redhat.com>
|
2004-09-16 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1996, 1997, 1999, 2003 Free Software Foundation, Inc.
|
/* Copyright (C) 1996, 1997, 1999, 2003, 2004 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
|
||||||
@ -40,15 +40,15 @@ typedef int nl_item;
|
|||||||
|
|
||||||
This function is a possible cancellation point and therefore not
|
This function is a possible cancellation point and therefore not
|
||||||
marked with __THROW. */
|
marked with __THROW. */
|
||||||
extern nl_catd catopen (__const char *__cat_name, int __flag);
|
extern nl_catd catopen (__const char *__cat_name, int __flag) __nonnull ((1));
|
||||||
|
|
||||||
/* Return translation with NUMBER in SET of CATALOG; if not found
|
/* Return translation with NUMBER in SET of CATALOG; if not found
|
||||||
return STRING. */
|
return STRING. */
|
||||||
extern char *catgets (nl_catd __catalog, int __set, int __number,
|
extern char *catgets (nl_catd __catalog, int __set, int __number,
|
||||||
__const char *__string) __THROW;
|
__const char *__string) __THROW __nonnull ((1));
|
||||||
|
|
||||||
/* Close message CATALOG. */
|
/* Close message CATALOG. */
|
||||||
extern int catclose (nl_catd __catalog) __THROW;
|
extern int catclose (nl_catd __catalog) __THROW __nonnull ((1));
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* UFC-crypt: ultra fast crypt(3) implementation
|
* UFC-crypt: ultra fast crypt(3) implementation
|
||||||
*
|
*
|
||||||
* Copyright (C) 1991, 92, 93, 96, 97, 98, 2000 Free Software Foundation, Inc.
|
* Copyright (C) 1991,92,93,96,97,98,2000,2004 Free Software Foundation, Inc.
|
||||||
*
|
*
|
||||||
* 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
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
@ -30,14 +30,15 @@
|
|||||||
__BEGIN_DECLS
|
__BEGIN_DECLS
|
||||||
|
|
||||||
/* 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 __nonnull ((1, 2));
|
||||||
|
|
||||||
/* Setup DES tables according KEY. */
|
/* Setup DES tables according KEY. */
|
||||||
extern void setkey (__const char *__key) __THROW;
|
extern void setkey (__const char *__key) __THROW __nonnull ((1));
|
||||||
|
|
||||||
/* 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 __nonnull ((1));
|
||||||
|
|
||||||
#ifdef __USE_GNU
|
#ifdef __USE_GNU
|
||||||
/* Reentrant versions of the functions above. The additional argument
|
/* Reentrant versions of the functions above. The additional argument
|
||||||
@ -57,13 +58,16 @@ struct crypt_data
|
|||||||
};
|
};
|
||||||
|
|
||||||
extern char *crypt_r (__const char *__key, __const char *__salt,
|
extern char *crypt_r (__const char *__key, __const char *__salt,
|
||||||
struct crypt_data * __restrict __data) __THROW;
|
struct crypt_data * __restrict __data)
|
||||||
|
__THROW __nonnull ((1, 2, 3));
|
||||||
|
|
||||||
extern void setkey_r (__const char *__key,
|
extern void setkey_r (__const char *__key,
|
||||||
struct crypt_data * __restrict __data) __THROW;
|
struct crypt_data * __restrict __data)
|
||||||
|
__THROW __nonnull ((1, 2));
|
||||||
|
|
||||||
extern void encrypt_r (char *__block, int __edflag,
|
extern void encrypt_r (char *__block, int __edflag,
|
||||||
struct crypt_data * __restrict __data) __THROW;
|
struct crypt_data * __restrict __data)
|
||||||
|
__THROW __nonnull ((1, 3));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1998, 1999 Free Software Foundation, Inc.
|
/* Copyright (C) 1998, 1999, 2004 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
|
||||||
@ -25,19 +25,20 @@ __BEGIN_DECLS
|
|||||||
|
|
||||||
/* Store up to SIZE return address of the current program state in
|
/* Store up to SIZE return address of the current program state in
|
||||||
ARRAY and return the exact number of values stored. */
|
ARRAY and return the exact number of values stored. */
|
||||||
extern int backtrace (void **__array, int __size) __THROW;
|
extern int backtrace (void **__array, int __size) __THROW __nonnull ((1));
|
||||||
|
|
||||||
|
|
||||||
/* Return names of functions from the backtrace list in ARRAY in a newly
|
/* Return names of functions from the backtrace list in ARRAY in a newly
|
||||||
malloc()ed memory block. */
|
malloc()ed memory block. */
|
||||||
extern char **backtrace_symbols (void *__const *__array, int __size) __THROW;
|
extern char **backtrace_symbols (void *__const *__array, int __size)
|
||||||
|
__THROW __nonnull ((1));
|
||||||
|
|
||||||
|
|
||||||
/* This function is similar to backtrace_symbols() but it writes the result
|
/* This function is similar to backtrace_symbols() but it writes the result
|
||||||
immediately to a file and can therefore also be used in situations where
|
immediately to a file and can therefore also be used in situations where
|
||||||
malloc() is not usable anymore. */
|
malloc() is not usable anymore. */
|
||||||
extern void backtrace_symbols_fd (void *__const *__array, int __size,
|
extern void backtrace_symbols_fd (void *__const *__array, int __size,
|
||||||
int __fd) __THROW;
|
int __fd) __THROW __nonnull ((1));
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user