aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/169 source in dep/generated/genheader.py
blob: 489db23d3c11d0809ada6394a6cbd2d88cf908eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python3

import sys

ifile = sys.argv[1]
ofile = sys.argv[2]

templ = '''#pragma once

int %s(void) {
  return 42;
}
'''

funname = open(ifile).readline().strip()

open(ofile, 'w').write(templ % funname)