15 lines · python
1#!/usr/bin/env python32#3# ===- Generate headers for libc functions ------------------*- python -*--==#4#5# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.6# See https://llvm.org/LICENSE.txt for license information.7# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception8#9# ==------------------------------------------------------------------------==#10 11from hdrgen.yaml_to_classes import main12 13if __name__ == "__main__":14 main()15