has been disabled.
** API and ABI modifications:
-gnutls_memset: Added
+No changes since last version.
* Version 3.3.2 (released 2014-05-06)
void *_gnutls_calloc(size_t nmemb, size_t size);
char *_gnutls_strdup(const char *);
+void gnutls_memset(void *data, int c, size_t size);
#define zrelease_mpi_key(mpi) if (*mpi!=NULL) { \
_gnutls_mpi_clear(*mpi); \
extern gnutls_realloc_function gnutls_realloc;
extern gnutls_calloc_function gnutls_calloc;
extern gnutls_free_function gnutls_free;
-void gnutls_memset(void *data, int c, size_t size);
extern char *(*gnutls_strdup) (const char *);
# include <gnutls_int.h>
#endif
-/**
+/*-
* gnutls_memset:
* @data: the memory to set
* @c: the constant byte to fill the memory with
* Returns: void.
*
* Since: 3.3.3
- **/
+ -*/
void gnutls_memset(void *data, int c, size_t size)
{
volatile unsigned volatile_zero = 0;