~mwhudson/pypy/imported-pypy-more-rtti-inprogress

« back to all changes in this revision

Viewing changes to rpython/module/ll_time.py

  • Committer: arigo
  • Date: 2007-09-03 11:49:19 UTC
  • Revision ID: svn-v4:fd0d7bf2-dfb6-0310-8d31-b7ecfe96aada:pypy/branch/pypy-more-rtti-inprogress:46270
Posix fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
    HAVE_FTIME = platform.Has('ftime')
25
25
 
26
26
class CConfigForFTime:
 
27
    _includes_ = ['sys/timeb.h']
27
28
    TIMEB = platform.Struct('struct timeb', [('time', rffi.INT),
28
29
                                             ('millitm', rffi.INT)])
29
30