1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-14 21:47:19 +02:00

Restructured the compat functions and changed its license.

New fucntion xstrconcat for future use.
This commit is contained in:
Werner Koch 2009-08-25 20:00:24 +00:00
parent f5f0171d55
commit 20fe42d10b
11 changed files with 193 additions and 24 deletions

32
keyserver/ksmalloc.c Normal file
View file

@ -0,0 +1,32 @@
/* ksmalloc.c - Walloc wrapper
* Copyright (C) 2009 Free Software Foundation, Inc.
*
* The origin of this code is GnuPG.
*
* This file is free software; as a special exception the author gives
* unlimited permission to copy and/or distribute it, with or without
* modifications, as long as this notice is preserved.
*
* This file is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
#include <stdlib.h>
/* A wrapper around malloc because libcompat requires it. */
void *
xtrymalloc (size_t n)
{
return malloc (n);
}
/* A wrapper around free becuase we are used to it. */
void
xfree (void *p)
{
if (p)
free (p);
}