]> git.ozlabs.org Git - petitboot/blob - discover/grub2/script.c
71d6cba81a77cfabf37d2fc6bacfcf0d42092973
[petitboot] / discover / grub2 / script.c
1
2 #include <talloc/talloc.h>
3
4 #include "grub2.h"
5
6 struct grub2_script *create_script(void *ctx)
7 {
8         struct grub2_script *script;
9         script = talloc(ctx, struct grub2_script);
10         return script;
11 }
12