whoami: Remove OpenB*OS version

* Was replaced by coreutils whoami, and options are the same.
This commit is contained in:
Alexander von Gluck IV
2012-04-01 13:40:19 -05:00
parent e0153fad24
commit 75c81b64a9
2 changed files with 0 additions and 22 deletions
-1
View File
@@ -55,7 +55,6 @@ StdBinCommands
unchop.c
uptime.cpp
vmstat.cpp
# whoami.c
: : $(haiku-utils_rsrc) ;
# Commands which don't need another library that depend on
-21
View File
@@ -1,21 +0,0 @@
// ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
//
// Copyright (c) 2002, OpenBeOS
//
// This software is part of the OpenBeOS distribution and is covered
// by the OpenBeOS license.
//
//
// File: whoami.c
// Author: Sandor Vroemisse ([email protected])
// Description: standard Unix whoami command
//
// ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
#include <stdio.h>
#include <unistd.h>
int main( int argc, char ** argv ) {
printf( "%s\n", getlogin() );
return 0;
}