git.fiddlerwoaroof.com
Browse code

implement getlogin

Greg Wiley authored on 04/05/2017 18:50:37
Showing 2 changed files
1 1
Binary files a/dual_control and b/dual_control differ
... ...
@@ -21,6 +21,9 @@ public:
21 21
     {
22 22
         return ::sysconf (name);
23 23
     }
24
+    const char *getlogin() const override {
25
+         return ::getlogin();
26
+    }
24 27
 };
25 28
 static unistd sys_unistd (unistd::delegate (new impl));
26 29
 }