summaryrefslogtreecommitdiff
path: root/wrappers
diff options
context:
space:
mode:
authorMathieu Duponchelle <MathieuDuponchelle@users.noreply.github.com>2016-12-24 17:14:32 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2016-12-24 09:14:32 -0700
commitc4c1d59ca29aceb1c5919908ac97d9476264fd96 (patch)
tree1940e7fdcc241c2d34cb5b68bf4e40211369dd1a /wrappers
parent9e643720ec903f3b448bd2589a0c02c2514805ae (diff)
wrapper.py: remove unused (and faulty) libc instantiation (#175)
Diffstat (limited to 'wrappers')
-rw-r--r--wrappers/wrapper.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/wrappers/wrapper.py b/wrappers/wrapper.py
index 7ef032a..1b3cb0a 100644
--- a/wrappers/wrapper.py
+++ b/wrappers/wrapper.py
@@ -6,13 +6,6 @@ import platform
c_object_p = POINTER(c_void_p)
-sysname = platform.system()
-
-if sysname == 'Windows':
- libc = CDLL('msvcrt.dll')
-else:
- libc = CDLL('libc.so.6')
-
if sys.version_info[0] > 2:
def bytes_and_length(text):
if type(text) == str: