Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getlogin.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3931e7731651d0855bcc0233624e3148f519d9a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* FIXME: dummy stub for now.  */
#include <errno.h>
#include <unistd.h>

char *
_DEFUN_VOID (getlogin)
{
  errno = ENOSYS;
  return NULL;
}