Skip to content

Instantly share code, notes, and snippets.

@lukassup
Created May 8, 2017 18:15
Show Gist options
  • Select an option

  • Save lukassup/f48b4d402d2256e37871d87629beceb9 to your computer and use it in GitHub Desktop.

Select an option

Save lukassup/f48b4d402d2256e37871d87629beceb9 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from ctypes import CDLL
dll = 'dylib' if sys.platform == 'darwin' else 'so.6'
libc = CDLL('libc.%s' % dll)
libc.time(-1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment