1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

Extended gpg-connect-agent.

New "GETINFO pid" command for scdaemon and gpg-agent.
This commit is contained in:
Werner Koch 2007-10-02 16:30:58 +00:00
parent 31c19d1d68
commit ed7d2d72c6
7 changed files with 472 additions and 7 deletions

View file

@ -37,6 +37,12 @@ gcry_malloc (size_t n)
return malloc (n);
}
void *
gcry_malloc_secure (size_t n)
{
return malloc (n);
}
void *
gcry_xmalloc (size_t n)
{