Plan 9 from Bell Labs’s /usr/web/sources/patch/applied/uname-configure/uname.c.orig

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#include <stdlib.h>
#include <sys/utsname.h>

int
uname(struct utsname *n)
{
	n->sysname = "Plan9";
	n->nodename = getenv("sysname");
	if(!n->nodename){
		n->nodename = getenv("site");
		if(!n->nodename)
			n->nodename = "?";
	}
	n->release = "1";
	n->version = "0";
	n->machine = getenv("terminal");
	if(!n->machine){
		n->machine = getenv("cputype");
		if(!n->machine)
			n->machine = "?";
	}
	return 0;
}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.