llvmpy/libc.py
Siu Kwan Lam f9d7195413 reorganize
2012-08-13 15:53:09 -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