efeb8bffe3
Convert ipfilter userland function declarations from K&R to ANSI. This syncs our function declarations with NetBSD hg commit 75edcd7552a0 (apply our changes). Though not copied from NetBSD, this change was partially inspired by NetBSD's work and inspired by style(9). Reviewed by: glebius (for #network) MFC after: 1 month Differential Revision: https://reviews.freebsd.org/D33595
20 lines
326 B
C
20 lines
326 B
C
/*
|
|
* Copyright (C) 2012 by Darren Reed.
|
|
*
|
|
* See the IPFILTER.LICENCE file for details on licencing.
|
|
*
|
|
* $Id: alist_free.c,v 1.3.2.2 2012/07/22 08:04:24 darren_r Exp $
|
|
*/
|
|
#include "ipf.h"
|
|
|
|
void
|
|
alist_free(alist_t *hosts)
|
|
{
|
|
alist_t *a, *next;
|
|
|
|
for (a = hosts; a != NULL; a = next) {
|
|
next = a->al_next;
|
|
free(a);
|
|
}
|
|
}
|