blob: 70954aca95665fab91162beab8fd4be23784e649 [file] [log] [blame]
#!/usr/bin/python
import sys
from ccclib import Driver
def main():
d = Driver.Driver()
# FIXME: We should pass program name here as well.
d.run(sys.argv[1:])
if __name__=='__main__':
main()