mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Remove hacks which are not anymore needed since we now require Libgcrypt 1.4
This commit is contained in:
parent
d62ca1bf4a
commit
7d63aa42e5
27 changed files with 348 additions and 271 deletions
|
@ -65,13 +65,15 @@
|
|||
/* Malloc functions to be used by jnlib. */
|
||||
#define jnlib_malloc(a) gcry_malloc( (a) )
|
||||
#define jnlib_calloc(a,b) gcry_calloc( (a), (b) )
|
||||
#define jnlib_realloc(a,b) gcry_realloc( (a), (b) )
|
||||
#define jnlib_strdup(a) gcry_strdup( (a) )
|
||||
#define jnlib_xmalloc(a) gcry_xmalloc( (a) )
|
||||
#define jnlib_xcalloc(a,b) gcry_xcalloc( (a), (b) )
|
||||
#define jnlib_xrealloc(a,n) gcry_xrealloc( (a), (n) )
|
||||
#define jnlib_xstrdup(a) gcry_xstrdup( (a) )
|
||||
#define jnlib_free(a) gcry_free( (a) )
|
||||
|
||||
/* Logging functions to be jused by jnlib. */
|
||||
/* Logging functions to be used by jnlib. */
|
||||
#define jnlib_log_debug log_debug
|
||||
#define jnlib_log_info log_info
|
||||
#define jnlib_log_error log_error
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue