#include #include #include #include #include void bye() { printf("byeee!\n"); } int main() { atexit(bye); printf("Welcome to %s from userspace!\n", "Luna"); int fd = open("/etc/motd", 0); if (fd < 0) { perror("open"); return 1; } close(fd); time_t now = time(NULL); printf("date: %s", ctime(&now)); }