X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fdigest.c;h=4ef98cd818c57430cbf63caed1cb149acf5fbec8;hb=90cde91141ec61be4354d8deab21edb8fdf01022;hp=85bea7d503a7f34eed819028aad3995e905eb91d;hpb=bcac314fe2d758e85335d499dbb4300bfa8a599e;p=tinc diff --git a/src/digest.c b/src/digest.c index 85bea7d5..4ef98cd8 100644 --- a/src/digest.c +++ b/src/digest.c @@ -1,9 +1,30 @@ +/* + digest.c -- stub digest handling functions + Copyright (C) 2007-2022 Guus Sliepen + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +*/ + +#include "system.h" + #include "digest.h" #include "xalloc.h" #ifndef DISABLE_LEGACY -digest_t *digest_alloc() { +digest_t *digest_alloc(void) { return xzalloc(sizeof(digest_t)); }