all functions are now void

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1411 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1997-03-14 03:15:23 +00:00
parent 1eb310af2e
commit a55315f679

View File

@@ -1,8 +1,7 @@
/* $Id$ */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
RCSID("$Id$");
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -13,19 +12,19 @@ free_integer (unsigned *num)
{
}
int
void
free_general_string (char **str)
{
free(*str);
}
int
void
free_octet_string (krb5_data *k)
{
free(k->data);
}
int
free_generalized_time (unsigned char *p, int len, time_t *t)
void
free_generalized_time (time_t *t)
{
}