--- experimental/host/sysinfo/sysinfo.cc 2000/11/07 17:56:45 1.1 +++ experimental/host/sysinfo/sysinfo.cc 2000/11/07 19:27:54 1.2 @@ -1,8 +1,12 @@ #include "hostname.hh" #include "load.hh" +#include "environment.hh" int main() { + cout << "sleep test for 3 seconds" << endl; + sleep(3); printHostname(); printLoad(); + printEnv("USER"); return 0; }