···11#!/usr/bin/env python3
2233-import sys, os, subprocess, re, getpass
33+import sys, os, subprocess, re, getpass, datetime
4455# Data
66library = False
···2020username = getpass.getuser()
2121class_dump = "/Users/" + username + "/bin/class-dump"
22222323-copyright = """/*
2323+copyright_template = """/*
2424 This file is part of Darling.
25252626- Copyright (C) 2019 Lubos Dolezel
2626+ Copyright (C) {} Darling Developers
27272828 Darling is free software: you can redistribute it and/or modify
2929 it under the terms of the GNU General Public License as published by
···4040*/
41414242"""
4343+copyright = copyright_template.format(datetime.datetime.now(datetime.timezone.utc).year)
43444445c_func_impl_stub = """
4546void* %s(void)