blob: 3430f5717b0cca732463de7c97749aa75c3e522e (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
size_t
libenv_vselect_variable_list_with_dealloc(char **variables, va_list classes)
{
return libenv_vprocess_list_with_dealloc__(variables, 0, classes, NO_HEAD, VARIABLES, SELECT);
}
|