summaryrefslogtreecommitdiffstats
path: root/discover/grub2/script.c
blob: 71d6cba81a77cfabf37d2fc6bacfcf0d42092973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

#include <talloc/talloc.h>

#include "grub2.h"

struct grub2_script *create_script(void *ctx)
{
	struct grub2_script *script;
	script = talloc(ctx, struct grub2_script);
	return script;
}

OpenPOWER on IntegriCloud