Luna/apps/src/uname.c
2022-10-22 15:43:21 +02:00

18 lines
240 B
C

#include <stdio.h>
int main()
{
FILE* fp = fopen("/dev/version", "r");
if (!fp)
{
perror("fopen");
return 1;
}
char buf[32];
fgets(buf, sizeof(buf), fp);
printf("%s\n", buf);
fclose(fp);
}