mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
14 lines
198 B
C++
14 lines
198 B
C++
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int, char**)
|
|
{
|
|
char* tty = ttyname(0);
|
|
if (!tty) {
|
|
perror("Error");
|
|
return 1;
|
|
}
|
|
printf("%s\n", tty);
|
|
return 0;
|
|
}
|