]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - misc/profile-to-c.awk
e2freefrag: fix portability problem for Hurd
[thirdparty/e2fsprogs.git] / misc / profile-to-c.awk
CommitLineData
d48bc604
TT
1#!/bin/awk
2BEGIN {
3 printf("const char *mke2fs_default_profile = \n");
4}
5
6{
7 printf(" \"%s\\n\"\n", $0);
8}
9
10END {
11 printf(";\n", str)
12}