/* vim: tabstop=4 shiftwidth=4 noexpandtab * This file is part of ToaruOS and is released under the terms * of the NCSA / University of Illinois License - see LICENSE.md * Copyright (C) 2013-2014 K. Lange * * Who Am I? * */ #include #include #include #include #include int main(int argc, char ** argv) { struct passwd * p = getpwuid(getuid()); if (!p) return 0; fprintf(stdout, "%s\n", p->pw_name); endpwent(); return 0; }