llvmpy/llvm_cbuilder/libc.py
2012-08-08 15:17:31 -07:00

8 lines
205 B
Python

from .builder import CExternal
import llvm.core as lc
from . import shortnames as types
class LibC(CExternal):
printf = lc.Type.function(types.int, [types.char_p], True)
# TODO a lot more to add