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: 1cc0f4e0442b94dc8214e33868ed4963f97bde99 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* FIXME: dummy stub for now.  */
#include <errno.h>
#include <unistd.h>

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