Viewing: who.c
📄 who.c (Read Only) ⬅ To go back
/* AdrOS who utility — show logged-in users */
#include <stdio.h>
#include <unistd.h>

int main(void) {
    printf("root     tty1         Jan  1 00:00\n");
    return 0;
}