brintos

brintos / llvm-project-archived public Read only

0
0
Text · 456 B · 3e53661 Raw
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.main import main12 13if __name__ == "__main__":14    main()15