OS/2+EMX: make the link() emulation available as os.link()
diff --git a/Lib/os.py b/Lib/os.py
index 488d3e4..128351e 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -76,6 +76,7 @@
         import ntpath as path
     else:
         import os2emxpath as path
+        from _emx_link import link
 
     import os2
     __all__.extend(_get_exports_list(os2))