llvmpy/llvm_cbuilder/libc.py
2012-11-07 11:01:40 -06: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