aboutsummaryrefslogtreecommitdiffstats
path: root/libenv_get_chosen_list.c
blob: 194098549ec585f1aecb72ad5e39f57ef95127a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/* See LICENSE file for copyright and license details. */
#include "common.h"


const char **
libenv_get_chosen_list(enum libenv_class classes_head, ...)
{
	va_list classes_tail;
	va_start(classes_tail, classes_head);
	return libenv_vget_chosen_list(classes_head, classes_tail);
	va_end(classes_tail);
}