summaryrefslogtreecommitdiff
path: root/src/unistd/getlogin_r.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/getlogin_r.c')
-rw-r--r--src/unistd/getlogin_r.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/unistd/getlogin_r.c b/src/unistd/getlogin_r.c
new file mode 100644
index 00000000..f04f71e5
--- /dev/null
+++ b/src/unistd/getlogin_r.c
@@ -0,0 +1,13 @@
+#include <unistd.h>
+#include <stdlib.h>
+#include <string.h>
+#include <errno.h>
+
+int getlogin_r(char *name, size_t size)
+{
+ char *logname = getlogin();
+ if (!logname) return ENXIO; /* or...? */
+ if (strlen(name) >= size) return ERANGE;
+ strcpy(name, logname);
+ return 0;
+}